Tags
- 235
- 80386
- AS/400
- atw
- bash
- brocade
- calendar
- dd
- device manager
- devices
- DOS
- esxi
- Explorer
- floppy
- GPS
- gpx
- ibm
- icloud
- Imoff
- iSeries
- linux
- lsx 3010
- M316
- macos
- modem
- MS SQL
- mtcp
- netapp
- netfinity
- Nordkap
- olivetti
- P30 error
- retro
- retroNET
- san
- smvi
- T4600C
- Test
- thunderbird
- toshiba
- vintage
- vmware
- win2012
- Windows
- zyxel
-
Recent Posts
Archives
- April 2021
- March 2021
- February 2021
- May 2020
- April 2019
- April 2017
- February 2017
- September 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- September 2014
- January 2014
- June 2013
- November 2012
- September 2012
- August 2012
- July 2012
- June 2012
Categories
Category Archives: Microsoft
Analysing VSS issues and truncate transacation logs in commandline
start a CMD as administrator if UAC is enabled. get the GUID of the root path: vssadmin list volumes C:\windows\system32>vssadmin list volumes vssadmin 1.1 – Volume Shadow Copy Service administrative command-line tool (C) Copyright 2001-2013 Microsoft Corp. Volume path: \\?\Volume{30d639e8-0000-0000-0000-100000000000}\ … Continue reading
invert scroll wheel on Windows7
use Powershell to change the registry for all mouse HID devices: Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
Posted in Microsoft
Comments Off on invert scroll wheel on Windows7
Win2012 Server Core: GUI installation
powershell Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell -Restart -Source wim:d:\sources\install.wim:2 to check for the correct source wim file: Get-windowsimage –imagepath d:\sources\install.wim the volume license ISO has the following images included: 1: enterprise core 2: enterprise with gui 3: datacenter core 4: datacenter with gui
Set Default OU for Computer Accounts
Computer Accounts werden im ActiveDirectory immer im Ordner “Computers” erstellt. Dies ist meistens nicht erwünscht, da man die Computer Accounts danach immer manuell verschieben muss. Lösung: seit Windows 2003 gibt es den Commandline Befehl REDIRCMP. Die OU muss vorher erstellt … Continue reading
Windows Server 2008: disable hybernation
Win2008 erstellt bei der Installation automatisch das File hiberfil.sys, welches für den Hibernation Mode zuständig ist. es ist so gross wie das RAM, also normalerweise mehrere GB. man kann es auch nicht einfach im Explorer löschen. das Ausschalten von Hybernation … Continue reading