Change startup script to load all drivers
This commit is contained in:
parent
6ee4d5a22d
commit
8e2c1f1860
3
winfs/Scripts/Drivers.ps1
Normal file
3
winfs/Scripts/Drivers.ps1
Normal file
|
@ -0,0 +1,3 @@
|
|||
Get-ChildItem -Recurse X:\drivers "*.inf" | ForEach-Object {
|
||||
drvload $_;
|
||||
};
|
|
@ -1,5 +1,6 @@
|
|||
@echo off
|
||||
wpeutil SetKeyboardLayout 0807:00000807
|
||||
drvload X:\drivers\Network\x64\win10-win11\aqnic650.inf
|
||||
echo Loading Drivers...
|
||||
X:\PowerShell\pwsh.exe -file "X:\Scripts\Drivers.ps1";
|
||||
echo Launching Startup Script...
|
||||
start X:\PowerShell\pwsh.exe -NoExit -ExecutionPolicy bypass -file "X:\Scripts\Startup.ps1"
|
||||
|
|
Loading…
Reference in a new issue