Samples/ApplicationScriptFullSample.json
{
"name": "VistaCay Application Script", "scope": "User", // [User | Device] "version": "1", // Only single digit version numbers "versionControl": true, // [true | false] - for quick and easy deactivation of versioning "instructions": [ { "$type": "CoreInstructions.CopyFile", "sourceFileName": "C:\\Temp\\Password.txt", "targetFileName": "C:\\Temp\\Password -Copy.txt", "overwrite": true }, { "$type": "CoreInstructions.CreateShortcut", "linkPath": "C:\\Temp\\VistaCay.lnk", "targetPath": "notepad.exe", "arguments": "C:\\Temp\\Password - Copy.txt", "windowStyle": "Minimized" } /*, { "$type": "AzureInstructions.CopyBlob", "container": "vistacay", "connectionString": "DefaultEndpointsProtocol=https;AccountName=edifileservices;AccountKey=[[Provide Read Key Here]];EndpointSuffix=core.windows.net", "blobName": "GalaxyBridge.jpg", "targetFileName": "C:\\Temp\\GalaxyBridge_download.jpg" } */ ] } |