-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLoadIdleScript.ps1
66 lines (45 loc) · 2.38 KB
/
LoadIdleScript.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<#
.SYNOPSIS
This script creates a task inside Windows Task Scheduler getting a file script from a blob storage.
.DESCRIPTION
This script creates a task inside Windows Task Scheduler getting the Task scheduler configuration from the xml file.
.PARAMETER StorageAccountName
Optional. The name of the storage account
.PARAMETER containerName
Optional. The name of the container
.PARAMETER SASToken
Optional. The name of the SAS token.
.PARAMETER folder
Optional. The name of the destination folder for the XML file
.PARAMETER filename
Optional. The name of the XML file containing the definition of the task
.PARAMETER scriptName
Optional. The name of the script file
.EXAMPLE
PS C:\> LoadIdleScript
.EXAMPLE
PS C:\> LoadIdleScript -StorageAccountName university -containerName universityContent
#>
param
(
[Parameter(Mandatory=$false, HelpMessage="The name of the storage account")]
[string] $StorageAccountName="vlabresources",
[Parameter(Mandatory=$false, HelpMessage="The name of the container")]
[string] $containerName="content",
[Parameter(Mandatory=$false, HelpMessage="The name of the SAS token")]
[string] $SASToken="?sv=2016-05-31&ss=b&srt=sco&sp=r&se=2025-04-06T21:13:00Z&st=2017-04-06T10:00:00Z&spr=https,http&sig=Snb5dfr2c%2FGHZQM6k7996AS6BzpRh2%2BRxgosuH5D3fA%3D",
[Parameter(Mandatory=$false, HelpMessage="The name of the destination folder for the XML file")]
[string] $folder = "C:\Users\SuperUser\Documents\WindowsPowerShell",
[Parameter(Mandatory=$false, HelpMessage="The name of the XML file containing the definition of the task")]
[string] $filename = "ShutdownOnIdleV2.xml",
[Parameter(Mandatory=$false, HelpMessage="The name of the script file")]
[string] $scriptName = "ShutdownOnIdleV2.ps1"
)
$ErrorActionPreference = "Stop"
$Ctx = New-AzureStorageContext $StorageAccountName -SasToken $SASToken
Get-AzureStorageBlobContent -Container $containerName -Blob $filename -Destination $folder -Context $Ctx -Force -ErrorAction Stop
Get-AzureStorageBlobContent -Container $containerName -Blob $scriptName -Destination $folder -Context $Ctx -Force -ErrorAction Stop
$filepath = $folder +"\"+ $filename
$taskname = $filename.Split('.')[0]
schtasks.exe /delete /TN $taskname /f
schtasks.exe /create /TN $taskname /XML $filepath