Samples/ApplicationScriptFullSample.json

{
  "name": "VistaCay Application Script",
  "scope": "User", // [User | Device]
  //"version": "1", // Optional (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": "%TEMP%\\Password - Copy.txt",
      "overwrite": true
    },
    {
      "$type": "CoreInstructions.CopyDirectory",
      "sourceDirectory": "C:\\Temp\\David",
      "targetDirectory": "C:\\Temp\\David - Copy",
      "overwrite": true
    },
    {
      "$type": "CoreInstructions.CreateShortcut",
      "linkPath": "%USERPROFILE%\\Desktop\\VistaCay.lnk",
      "targetPath": "notepad.exe",
      "arguments": "C:\\Temp\\Password - Copy.txt",
      "iconLocation": "%SYSTEMROOT%\\System32\\Shell32.dll,149",
      "windowStyle": "Normal" // [Normal|Minimized|Maximized]
    },
    {
      "$type": "AzureInstructions.DownloadBlob",
      "container": "vistacay",
      "connectionString": "DefaultEndpointsProtocol=https;AccountName=[[Storage Account Here]];AccountKey=[[Read Key Here]];EndpointSuffix=core.windows.net",
      "blobName": "GalaxyBridge.jpg",
      "targetFileName": "C:\\Temp\\GalaxyBridge_download.jpg"
    },
    {
      "$type": "AzureInstructions.DownloadContainer",
      "container": "testforvistacay",
      "connectionString": "DefaultEndpointsProtocol=https;AccountName=[[Storage Account Here]];AccountKey=AccountKey=[[Read Key Here]];EndpointSuffix=core.windows.net",
      "targetFolder": "C:\\Temp\\TestForVistaCay"
    }
  ]
}