DotNet4 Silent Install

From Michael's Information Zone
Revision as of 18:24, 7 September 2016 by Michael.mast (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

[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