Benutzer-Werkzeuge

Webseiten-Werkzeuge


win10

ISO

default browser: https://kolbi.cz/blog/2017/11/10/setdefaultbrowser-set-the-default-browser-per-user-on-windows-10-and-server-2016-build-1607/

max path pfadlänge mehr als 256 zeichen info

longpath_enable.reg
Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001

bios key auslesen

(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey

temporäres profil Externer Link

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

ohne .bak umbenennen, .bak endung entfernen

disable passport for work/pin

edvc-disable-pin.ps1
$RegistryPath = "HKLM:\Software\Policies\Microsoft"
$RegistryKey = "PassportForWork"
$Name = "Enabled"
 
$value = "0"
 
New-Item -Path $RegistryPath -Name $RegistryKey -ErrorAction Ignore
New-ItemProperty -Path $RegistryPath\$RegistryKey -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
edvc-disable-pin.reg
Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PassportForWork]
"Enabled"=dword:00000000
edvc-disable-fast-boot.reg
Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power]
"HiberbootEnabled"=dword:00000000
edvc-enable-l2tp-udp.reg
Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent]
"AssumeUDPEncapsulationContextOnSendRule"=dword:00000002

cortana bing suche aus (quelle: heise):

edvc-cortana-aus.reg
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"AllowCortana"=dword:00000000
 
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"CortanaConsent"=dword:00000000
edvc-win10-bild-und-faxanzeige.ps1
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations' -Name '.jpg' -Value 'PhotoViewer.FileAssoc.Tiff' -PropertyType String -Force -ea SilentlyContinue;
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations' -Name '.jpeg' -Value 'PhotoViewer.FileAssoc.Tiff' -PropertyType String -Force -ea SilentlyContinue;
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations' -Name '.png' -Value 'PhotoViewer.FileAssoc.Tiff' -PropertyType String -Force -ea SilentlyContinue;
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations' -Name '.gif' -Value 'PhotoViewer.FileAssoc.Tiff' -PropertyType String -Force -ea SilentlyContinue;
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations' -Name '.bmp' -Value 'PhotoViewer.FileAssoc.Tiff' -PropertyType String -Force -ea SilentlyContinue;
edvc-win10-bild-und-faxanzeige.reg
Windows Registry Editor Version 5.00 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations]
".jpg"="PhotoViewer.FileAssoc.Tiff" 
".jpeg"="PhotoViewer.FileAssoc.Tiff" 
".png"="PhotoViewer.FileAssoc.Tiff" 
".gif"="PhotoViewer.FileAssoc.Tiff" 
".bmp"="PhotoViewer.FileAssoc.Tiff"
edvc-fileassoc_vlc.xml
<!--
https://petri.com/managing-file-associations-windows-10#:~:text=Install%20your%20apps%20on%20a,to%20set%20the%20default%20apps.
export:
dism.exe /online /export-defaultappassociations:c:\temp\customfileassoc.xml
 
import:
dism.exe /online /import-defaultappassociations:c:\temp\customfileassoc.xml
-->
 
<?xml version="1.0" encoding="UTF-8"?>
<DefaultAssociations>
  <Association Identifier=".3g2" ProgId="VLC.3g2" ApplicationName="VLC media player" />
  <Association Identifier=".3gp" ProgId="VLC.3gp" ApplicationName="VLC media player" />
  <Association Identifier=".3gp2" ProgId="VLC.3gp2" ApplicationName="VLC media player" />
  <Association Identifier=".3gpp" ProgId="VLC.3gpp" ApplicationName="VLC media player" />
  <Association Identifier=".aac" ProgId="VLC.aac" ApplicationName="VLC media player" />
    <Association Identifier=".adts" ProgId="VLC.adts" ApplicationName="VLC media player" />
  <Association Identifier=".aif" ProgId="VLC.aif" ApplicationName="VLC media player" />
  <Association Identifier=".aifc" ProgId="VLC.aifc" ApplicationName="VLC media player" />
  <Association Identifier=".aiff" ProgId="VLC.aiff" ApplicationName="VLC media player" />
  <Association Identifier=".amr" ProgId="VLC.amr" ApplicationName="VLC media player" />
  <Association Identifier=".asf" ProgId="VLC.asf" ApplicationName="VLC media player" />
  <Association Identifier=".asx" ProgId="VLC.asx" ApplicationName="VLC media player" />
  <Association Identifier=".au" ProgId="VLC.au" ApplicationName="VLC media player" />
  <Association Identifier=".avi" ProgId="VLC.avi" ApplicationName="VLC media player" />
  <Association Identifier=".cda" ProgId="VLC.cda" ApplicationName="VLC media player" />
  <Association Identifier=".flac" ProgId="VLC.flac" ApplicationName="VLC media player" />
  <Association Identifier=".m1v" ProgId="VLC.m1v" ApplicationName="VLC media player" />
  <Association Identifier=".m2t" ProgId="VLC.m2t" ApplicationName="VLC media player" />
  <Association Identifier=".m2ts" ProgId="VLC.m2ts" ApplicationName="VLC media player" />
  <Association Identifier=".m3u" ProgId="VLC.m3u" ApplicationName="VLC media player" />
  <Association Identifier=".m4a" ProgId="VLC.m4a" ApplicationName="VLC media player" />
  <Association Identifier=".m4p" ProgId="VLC.m4p" ApplicationName="VLC media player" />
  <Association Identifier=".m4v" ProgId="VLC.m4v" ApplicationName="VLC media player" />
  <Association Identifier=".mid" ProgId="VLC.mid" ApplicationName="VLC media player" />
  <Association Identifier=".mka" ProgId="VLC.mka" ApplicationName="VLC media player" />
  <Association Identifier=".mkv" ProgId="VLC.mkv" ApplicationName="VLC media player" />
  <Association Identifier=".mov" ProgId="VLC.mov" ApplicationName="VLC media player" />
  <Association Identifier=".MP2" ProgId="VLC.mp2" ApplicationName="VLC media player" />
  <Association Identifier=".mp2v" ProgId="VLC.mp2v" ApplicationName="VLC media player" />
  <Association Identifier=".mp3" ProgId="VLC.mp3" ApplicationName="VLC media player" />
  <Association Identifier=".mp4" ProgId="VLC.mp4" ApplicationName="VLC media player" />
  <Association Identifier=".mp4v" ProgId="VLC.mp4v" ApplicationName="VLC media player" />
  <Association Identifier=".mpa" ProgId="VLC.mpa" ApplicationName="VLC media player" />
  <Association Identifier=".MPE" ProgId="VLC.mpe" ApplicationName="VLC media player" />
  <Association Identifier=".mpeg" ProgId="VLC.mpeg" ApplicationName="VLC media player" />
  <Association Identifier=".mpg" ProgId="VLC.mpg" ApplicationName="VLC media player" />
  <Association Identifier=".mpv2" ProgId="VLC.mpv2" ApplicationName="VLC media player" />
  <Association Identifier=".mts" ProgId="VLC.mts" ApplicationName="VLC media player" />
  <Association Identifier=".ra" ProgId="VLC.ra" ApplicationName="VLC media player" />
  <Association Identifier=".ram" ProgId="VLC.ram" ApplicationName="VLC media player" />
  <Association Identifier=".rmi" ProgId="VLC.rmi" ApplicationName="VLC media player" />
  <Association Identifier=".s3m" ProgId="VLC.s3m" ApplicationName="VLC media player" />
  <Association Identifier=".snd" ProgId="VLC.snd" ApplicationName="VLC media player" />
  <Association Identifier=".TS" ProgId="VLC.ts" ApplicationName="VLC media player" />
  <Association Identifier=".TTS" ProgId="VLC.tts" ApplicationName="VLC media player" />
  <Association Identifier=".voc" ProgId="VLC.voc" ApplicationName="VLC media player" />
  <Association Identifier=".wav" ProgId="VLC.wav" ApplicationName="VLC media player" />
  <Association Identifier=".wma" ProgId="VLC.wma" ApplicationName="VLC media player" />
  <Association Identifier=".wmv" ProgId="VLC.wmv" ApplicationName="VLC media player" />
  <Association Identifier=".WPL" ProgId="VLC.wpl" ApplicationName="VLC media player" />
  <Association Identifier=".wvx" ProgId="VLC.wvx" ApplicationName="VLC media player" />
  <Association Identifier=".xm" ProgId="VLC.xm" ApplicationName="VLC media player" />
  <Association Identifier=".zpl" ProgId="VLC.zpl" ApplicationName="VLC media player" />
</DefaultAssociations>
edvc-fileassoc_bildundfax.xml
<!--
https://petri.com/managing-file-associations-windows-10#:~:text=Install%20your%20apps%20on%20a,to%20set%20the%20default%20apps.
export:
dism.exe /online /export-defaultappassociations:c:\temp\customfileassoc.xml
 
import:
dism.exe /online /import-defaultappassociations:c:\temp\customfileassoc.xml
-->
 
<?xml version="1.0" encoding="UTF-8"?>
<DefaultAssociations>
  <Association Identifier=".bmp" ProgId="PhotoViewer.FileAssoc.Tiff" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".gif" ProgId="PhotoViewer.FileAssoc.Tiff" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".jpeg" ProgId="PhotoViewer.FileAssoc.Tiff" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".jpg" ProgId="PhotoViewer.FileAssoc.Tiff" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".png" ProgId="PhotoViewer.FileAssoc.Tiff" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".tif" ProgId="TIFImage.Document" ApplicationName="Windows-Fotoanzeige" />
  <Association Identifier=".tiff" ProgId="TIFImage.Document" ApplicationName="Windows-Fotoanzeige" />
  </DefaultAssociations>
edvc-fileassoc_bildundfax.xml
<!--
https://petri.com/managing-file-associations-windows-10#:~:text=Install%20your%20apps%20on%20a,to%20set%20the%20default%20apps.
export:
dism.exe /online /export-defaultappassociations:c:\temp\customfileassoc.xml
 
import:
dism.exe /online /import-defaultappassociations:c:\temp\customfileassoc.xml
-->
 
<?xml version="1.0" encoding="UTF-8"?>
<DefaultAssociations>
  <Association Identifier=".htm" ProgId="ChromeHTML" ApplicationName="Google Chrome" />
  <Association Identifier=".html" ProgId="ChromeHTML" ApplicationName="Google Chrome" />
  <Association Identifier="http" ProgId="ChromeHTML" ApplicationName="Google Chrome" />
  <Association Identifier="https" ProgId="ChromeHTML" ApplicationName="Google Chrome" />
</DefaultAssociations>
edvc-fileassoc_outlook365.xml
<!--
https://petri.com/managing-file-associations-windows-10#:~:text=Install%20your%20apps%20on%20a,to%20set%20the%20default%20apps.
export:
dism.exe /online /export-defaultappassociations:c:\temp\customfileassoc.xml
 
import:
dism.exe /online /import-defaultappassociations:c:\temp\customfileassoc.xml
-->
 
<?xml version="1.0" encoding="UTF-8"?>
<DefaultAssociations>
  <Association Identifier="mailto" ProgId="Outlook.URL.mailto.15" ApplicationName="Outlook" />
</DefaultAssociations>
win10.txt · Zuletzt geändert: von edvc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki