M

  • Most Useful ESXCLI and ESXi Shell Commands for Your VMware Environment
    VMware provides a powerful and convenient graphical interface for managing ESXi servers – you can use a VMware vSphere Client that is a standalone application ...
  • MYSQL / MARIADB commandos
    [Inloggen in Mariadb] mysql -u root -p CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION; CREATE USER 'username'@'%' IDENTIFIED BY ...
  • MDT – Create install.wim from install.esd
    Create install.wim from install.esd Download a fresh ISO using Microsoft’s MediaCreationTool.exe . Download link: https://go.microsoft.com/fwlink/?LinkId=691209 It does not matter which edition is selected, for this is defined later ...
  • Move WSUS Content
    You can move the content to another drive/location using the wsusutil.exe, find this utility in C:\Program Files\Update Services\Tools Command: wsusutil.exe movecontent %content path% %logfile% %content path% ...
  • Manage app pools with powershell
    Import-Module WebAdministration # Discovering IIS app poolsGet-Command -Name *apppool* # Using the IIS driveGet-ChildItem -Path IIS:\AppPoolsGet-ItemProperty IIS:\AppPools\DefaultAppPool # Using IIS cmdletGet-IISAppPool # Finding the appliaction pool associated with a ...