Difference between revisions of "DotNet4 Silent Install"

From Michael's Information Zone
Jump to navigation Jump to search
(Created page with "<ref>https://msdn.microsoft.com/library/ee942965(v=VS.100).aspx#command_line_options</ref> <pre> if exist "C:\Program Files (x86)\Microsoft.NET" GOTO END copy \\remote\directo...")
 
(No difference)

Latest revision as of 19:24, 7 September 2016

[1]

if exist "C:\Program Files (x86)\Microsoft.NET" GOTO END
copy \\remote\directory\dotNetFx40_Full_x86_x64.exe c:\local\directory
c:
cd c:\local\directory
dotNetFx40_Full_x86_x64 /q /norestart
:END
exit