You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run background tasks with WebJobs in Azure App Service
19
19
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.
21
21
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.
23
23
24
24
> [!NOTE]
25
25
> WebJobs for *Windows container*, *Linux code*, and *Linux container* is in preview. WebJobs for Windows code is generally available and not in preview.
26
26
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).
32
28
33
29
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).
34
30
@@ -41,13 +37,9 @@ Azure Functions provides another way to run programs and scripts. For a comparis
41
37
The following file types are supported:
42
38
43
39
- Using Windows cmd: *.cmd*, *.bat*, *.exe*
44
-
45
40
- Using PowerShell: *.ps1*
46
-
47
41
- Using Bash: *.sh*
48
-
49
42
- Using Node.js: *.js*
50
-
51
43
- Using Java: *.jar*
52
44
53
45
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
58
50
> WebJobs for Windows container is in preview.
59
51
>
60
52
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*
64
54
65
55
In addition to these file types, WebJobs written in the language runtime of the Windows container app are supported.
0 commit comments