We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ab92ad commit d0a7290Copy full SHA for d0a7290
scripts/pnp.bat
@@ -0,0 +1,35 @@
1
+pnputil /enum-devices /class Display | findstr "ID da Instância"
2
+@echo.
3
4
+set/p ID= Coloque a ID da Instancia:
5
6
7
+pnputil /restart-device "%ID%"
8
+
9
10
+set /p reiniciar= escolha uma opcao:
11
12
+if %reiniciar% equ s goto reiniciars
13
+if %reiniciar% equ n goto reiniciarn
14
15
+if %reiniciar% equ nul (
16
+ @echo.
17
+ @echo Escolha uma opcao!
18
19
+ @pause
20
+) else (
21
+ color 2
22
23
+ @echo Opcao invalida!!
24
25
26
+ exit
27
+)
28
29
+:reiniciars
30
31
+shutdown /r /c "O chefe mandou, vá descansar"
32
33
+:reiniciarn
34
35
+exit
0 commit comments