Created
July 25, 2016 19:24
-
-
Save mvalipour/6d2aebb612ffb89e13fd6e8aa6619bdf to your computer and use it in GitHub Desktop.
Azure Cloud Service .NET 4.6.1 Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Directories scheduledTransferPeriod="PT1M"> | |
| <DataSources> | |
| <DirectoryConfiguration containerName="netfx-install"> | |
| <LocalResource name="NETFXInstall" relativePath="log"/> | |
| </DirectoryConfiguration> | |
| </DataSources> | |
| </Directories> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Set the value of netfx to install appropriate .NET Framework. | |
| REM ***** To install .NET 4.5.2 set the variable netfx to "NDP452" ***** | |
| REM ***** To install .NET 4.6 set the variable netfx to "NDP46" ***** | |
| REM ***** To install .NET 4.6.1 set the variable netfx to "NDP461" ***** | |
| set netfx="NDP461" | |
| REM ***** Set script start timestamp ***** | |
| set timehour=%time:~0,2% | |
| set timestamp=%date:~-4,4%%date:~-10,2%%date:~-7,2%-%timehour: =0%%time:~3,2% | |
| set "log=install.cmd started %timestamp%." | |
| REM ***** Exit script if running in Emulator ***** | |
| if %ComputeEmulatorRunning%=="true" goto exit | |
| REM ***** Needed to correctly install .NET 4.6.1, otherwise you may see an out of disk space error ***** | |
| set TMP=%PathToNETFXInstall% | |
| set TEMP=%PathToNETFXInstall% | |
| REM ***** Setup .NET filenames and registry keys ***** | |
| if %netfx%=="NDP461" goto NDP461 | |
| if %netfx%=="NDP46" goto NDP46 | |
| set "netfxinstallfile=NDP452-KB2901954-Web.exe" | |
| set netfxregkey="0x5cbf5" | |
| goto logtimestamp | |
| :NDP46 | |
| set "netfxinstallfile=NDP46-KB3045560-Web.exe" | |
| set netfxregkey="0x60051" | |
| goto logtimestamp | |
| :NDP461 | |
| set "netfxinstallfile=NDP461-KB3102438-Web.exe" | |
| set netfxregkey="0x6041f" | |
| :logtimestamp | |
| REM ***** Setup LogFile with timestamp ***** | |
| md "%PathToNETFXInstall%\log" | |
| set startuptasklog="%PathToNETFXInstall%log\startuptasklog-%timestamp%.txt" | |
| set netfxinstallerlog="%PathToNETFXInstall%log\NetFXInstallerLog-%timestamp%" | |
| echo %log% >> %startuptasklog% | |
| echo Logfile generated at: %startuptasklog% >> %startuptasklog% | |
| echo TMP set to: %TMP% >> %startuptasklog% | |
| echo TEMP set to: %TEMP% >> %startuptasklog% | |
| REM ***** Check if .NET is installed ***** | |
| echo Checking if .NET (%netfx%) is installed >> %startuptasklog% | |
| reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full" /v Release | Find %netfxregkey% | |
| if %ERRORLEVEL%== 0 goto installed | |
| REM ***** Installing .NET ***** | |
| echo Installing .NET with commandline: start /wait %~dp0%netfxinstallfile% /q /serialdownload /log %netfxinstallerlog% /chainingpackage "CloudService Startup Task" >> %startuptasklog% | |
| start /wait %~dp0%netfxinstallfile% /q /serialdownload /log %netfxinstallerlog% /chainingpackage "CloudService Startup Task" >> %startuptasklog% 2>>&1 | |
| if %ERRORLEVEL%== 0 goto installed | |
| echo .NET installer exited with code %ERRORLEVEL% >> %startuptasklog% | |
| if %ERRORLEVEL%== 3010 goto restart | |
| if %ERRORLEVEL%== 1641 goto restart | |
| echo .NET (%netfx%) install failed with Error Code %ERRORLEVEL%. Further logs can be found in %netfxinstallerlog% >> %startuptasklog% | |
| :restart | |
| echo Restarting to complete .NET (%netfx%) installation >> %startuptasklog% | |
| goto end | |
| :installed | |
| echo .NET (%netfx%) is installed >> %startuptasklog% | |
| :end | |
| echo install.cmd completed: %date:~-4,4%%date:~-10,2%%date:~-7,2%-%timehour: =0%%time:~3,2% >> %startuptasklog% | |
| :exit | |
| EXIT /B 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| download this file... see: https://azure.microsoft.com/en-gb/documentation/articles/cloud-services-dotnet-install-dotnet/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Startup> | |
| <Task commandLine="install.net461.cmd" executionContext="elevated" taskType="simple"> | |
| <Environment> | |
| <Variable name="PathToNETFXInstall"> | |
| <RoleInstanceValue xpath="/RoleEnvironment/CurrentInstance/LocalResources/LocalResource[@name='NETFXInstall']/@path" /> | |
| </Variable> | |
| <Variable name="ComputeEmulatorRunning"> | |
| <RoleInstanceValue xpath="/RoleEnvironment/Deployment/@emulated" /> | |
| </Variable> | |
| </Environment> | |
| </Task> | |
| ... | |
| <LocalResources> | |
| <LocalStorage name="NETFXInstall" sizeInMB="1024" cleanOnRoleRecycle="false" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment