Skip to content

Commit acc7321

Browse files
committed
Replace screenshot
1 parent 9c3bbdc commit acc7321

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed
-6.45 KB
Loading

articles/app-service/webjobs-create.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,14 @@ adobe-target-content: ./webjobs-create-ieux
1717

1818
# Run background tasks with WebJobs in Azure App Service
1919

20-
This article explains how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. You can run background tasks in the Azure App Service.
20+
This article explains how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. WebJobs is a feature of [Azure App Service](index.yml) that allows you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
2121

22-
If instead of the Azure App Service, you're using Visual Studio to develop and deploy WebJobs, see [Develop and deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
22+
You can use the [Azure WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki) with WebJobs to simplify many programming tasks.
2323

2424
> [!NOTE]
2525
> WebJobs for *Windows container*, *Linux code*, and *Linux container* is in preview. WebJobs for Windows code is generally available and not in preview.
2626
27-
## Overview
28-
29-
WebJobs is a feature of [Azure App Service](index.yml) that allows you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
30-
31-
You can use the [Azure WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki) with WebJobs to simplify many programming tasks.
27+
If you're using Visual Studio instead of the Azure App Service to develop and deploy WebJobs, see [Develop and deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
3228

3329
Azure Functions provides another way to run programs and scripts. For a comparison between WebJobs and Functions, see [Choose the right integration and automation services in Azure](../azure-functions/functions-compare-logic-apps-ms-flow-webjobs.md).
3430

@@ -41,13 +37,9 @@ Azure Functions provides another way to run programs and scripts. For a comparis
4137
The following file types are supported:
4238

4339
- Using Windows cmd: *.cmd*, *.bat*, *.exe*
44-
4540
- Using PowerShell: *.ps1*
46-
4741
- Using Bash: *.sh*
48-
4942
- Using Node.js: *.js*
50-
5143
- Using Java: *.jar*
5244

5345
The necessary runtimes to run these file types are already installed on the web app instance.
@@ -58,9 +50,7 @@ The necessary runtimes to run these file types are already installed on the web
5850
> WebJobs for Windows container is in preview.
5951
>
6052
61-
The following file types are supported:
62-
63-
- Using Windows cmd: *.cmd*, *.bat*, *.exe*
53+
The following file types are supported using Windows cmd: *.cmd*, *.bat*, *.exe*
6454

6555
In addition to these file types, WebJobs written in the language runtime of the Windows container app are supported.
6656

0 commit comments

Comments
 (0)