Category: Windows Server

  • Install/Uninstall Feature PowerShell Server 2012 Quick Notes

    To get the list of all features(feature names are in the second column, Windows PowerShell cmdlets are not case-sensitive): get-WindowsFeature To uninstall completely a feature: Uninstall-WindowsFeature featurename -remove If -remove is not used the feature will be listed as available, however, it won’t be removed from the harddrive. To install a feature after it’s removed…

  • Log Off User remotely – cmd

    If you ever wondered how to log off user remotely (or locally) via command line try this. As usual membership of the local admins group is needed. Start cmd with elevated privileges. check logged user and their session number with qwinsta: QWINSTA /server:computername Memorize the session ID and use the logoff command: LOGOFF sessionID /server:computername.    

  • Proxmox Post Install +

    My ProxMox Adventure – what I did so far Installed from CD (described in the previous post) Added additional 7200rpm, 2tb hard drive for storage purposes Created Several VM’s server core 2012 as s DC, DNS, GC – HDD shrink to 20gb One win7x64 as a domain workstation One win7x64 with 1tb hdd as a plex server…

  • Set Ip Server 2012 PowerShell

    To set a static IP address In Windows PowerShell, run Get-NetIPInterface. Make a note of the number shown in the IfIndex column of the output for your IP interface or the InterfaceDescription string. If your computer has more than one network adapter, make a note of the number or string corresponding to the interface for…