Tag: windows
How to count computers and users in Active Directory?
This is really quick tip (cmd commands): dsquery user -limit 10000 | find /c /i “OU=” To count users. dsquery computer -limit 10000 | find /c /i “OU=” Here you can find how to create paths.
How to pack directory using 7-zip in PHP on Windows?
This one was little bit tricky. If you want to pack files on your IIS webserver follow my guide.
How to setup pushover alert on logon event in Windows
In this post I’ll show you how to configure Pushover with Windows server. In this specific case it will notify you when someone logs onto your machine.
How to change computer name remotely using Windows 7?
There is a command line tool called netdom. Unfortunately it’s not preinstalled on Windows 7. This guide will show how to add this tool to your system and how to change remote computer name.
How to run application on specified interface?
If you have two interfaces, you can run programs using one of them (despite the fact that Windows selects default interface based on a metric value). For example I virtualize Windows 7 and I need same static ip for it that my host computer uses. It’s OK, in this scenario I can run applications using […]