Question Edit Windows iso ?

Sep 13, 2022
21
0
10
0
Friends, I couldn't find nvidia and intel chipset setup parameters with this code, can you help me please?
cd /d " %~dp0"
start /WAIT %~dp0googlechromestandaloneenterprise64.msi
start /WAIT %~dp0Foxit PDF Reader 12.1.0.15250.exe
start /WAIT %~dp0gfx_win_101.2115.exe /s /r

How can I add intel chipset and nvidia to these codes ?
 
cd /d " %~dp0"
start /WAIT %~dp0googlechromestandaloneenterprise64.msi
cd /d " %~dp0"
this command directs the cmd into the directory the bat starts from
so you don't have to include it again when running the exe
it should just be
start /WAIT googlechromestandaloneenterprise64.msi

You have to run the bat from a cmd with admin rights, and all the exe files have to be in the same folder as the bat file.
 

ASK THE COMMUNITY