Outils pour utilisateurs

Outils du site


tech:notes_windows

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
tech:notes_windows [2025/03/24 15:06] – créée - modification externe 127.0.0.1tech:notes_windows [2025/10/28 09:44] (Version actuelle) Jean-Baptiste
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 {{tag>Brouillon CA}} {{tag>Brouillon CA}}
  
-Notes windows+Notes windows
  
-== Charset lang+## Charset lang
  
 Source https://superuser.com/questions/482018/how-to-set-default-charset-in-windows-cmd Source https://superuser.com/questions/482018/how-to-set-default-charset-in-windows-cmd
  
 Get default charset in Windows cmd Get default charset in Windows cmd
-<code winbatch>+~~~winbatch
 chcp chcp
-</code>+~~~
  
 How to set default charset in Windows cmd ? How to set default charset in Windows cmd ?
  
-<code ini>+~~~reg 
 +Windows Registry Editor Version 5.00 
 [HKEY_CURRENT_USER\Software\Microsoft\Command Processor] [HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
 "AutoRun"="chcp 1251" "AutoRun"="chcp 1251"
-</code>+~~~
  
 Cmd - Get the System-locale setting for the current computer Cmd - Get the System-locale setting for the current computer
-<code winbatch>+~~~winbatch
 systeminfo | findstr /B /C:"System Locale" systeminfo | findstr /B /C:"System Locale"
-</code>+~~~
  
 PowerShell - Get the System-locale setting for the current computer PowerShell - Get the System-locale setting for the current computer
-<code ->+~~~
 Get-WinSystemLocale Get-WinSystemLocale
-</code>+~~~
  
  
-=== Recourci clavier changement layout keyboard+### Recourci clavier changement layout keyboard
  
 **[shift] + [ctrl]** **[shift] + [ctrl]**
Ligne 39: Ligne 42:
  
  
-== Pb réseau entreprise+## OS Architecture 32 64 bits
  
-<code winbatch>+~~~bash 
 +wmic os get osarchitecture 
 +~~~ 
 + 
 + 
 +If a folder called C:\Program Files (x86)\ exists it also confirms it’s 64Bit 
 + 
 +## Pb réseau entreprise 
 + 
 +~~~winbatch
 ipconfig /flushdns ipconfig /flushdns
 timeout 30 timeout 30
Ligne 49: Ligne 61:
 timeout 30 timeout 30
 gpupdate /force gpupdate /force
-</code>+~~~
  
  
  
-== Notes batch .bat cmd.exe+## Notes batch .bat cmd.exe
  
 Le code de retour est renvoyé par la variable ''ERRORLEVEL'' (équivalent à ''RC'') Le code de retour est renvoyé par la variable ''ERRORLEVEL'' (équivalent à ''RC'')
  
 +
 +
 +
 +## Désactiver Menu Démarrer Arrêter HideShutDown
 +
 +Eviter d'arrêter un hôte distant
 +
 +''HideShutDown''
 +
 +
 +~~~reg
 +Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Start\HideShutDown]
 +"value"=dword:00000001
 +~~~
 +
 +
 +## Registre windows GNU+Linux
 +
 +Voir : ''virt-win-reg''
 +
 +
 +
 +## Shutdown
 +
 +~~~winbatch
 +shutdown.exe /f /s /t 0
 +~~~
 +
 +
 +~~~powershell
 +restart-computer -force
 +~~~
  
  
tech/notes_windows.1742825205.txt.gz · Dernière modification : de 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki