Sunday, October 23, 2016

Find which users stay with the oldest passwords in Workgroup/Domain Computers

Sometimes, you need to know which users are in local admin group or specific group on remote computers. Net User give us a good way to get password information for local or domain users. In domain environment, it is easy with Get-Aduser, but for local computers you can use like .net type accelerator  [ADSI]"WinNT://$env:COMPUTERNAME". But for now, I'll use 'net user' output plus WMI to handle this. Finally, it gives me a script to find user account & password info with the use of 'net user' + WMI in either local or domain environment. Though my example is only on unencrypted winrm connection which listen on port 5985, I suggest to use ssl encrypted for remote winrm connection.

Saturday, October 15, 2016

Script to Join Active Directory Domain with Local user Profile migration

Writing a long good script is a tire-some job as well as interesting on the look & feel. It's been a quite a long time I didn't write good script whilst spending time with tiny utility scripts in my work. Today, I finalized a very good script which will join local users to domain users with automatic profile migration(current user) so that it will keep current local user's settings (such as wallpaper, Internet Explorer settings, Power Option Settings and their items on the desktop) in their new domain environment. And optionally you can choose not to migrate. For bulk deployment, you can compile the script to .exe with PowerGUI to bypass Powershell Execution Policy. Comments or feedbacks are welcome :D

Tuesday, October 11, 2016

Email Mailbox Migration Service available now !

Our myanmar local professionals are now giving services for different email mailbox migration scenarios in Myanmar at reasonable prices. We use softwares + various scripting techniques for a successful mailbox migration. Suggelbox to another so that user can keep history emails from old mailbox to new mailbox for emergency recall.

Where & how we transfer emails.

Monday, October 10, 2016

Restart Server at specific time without creating schedule Task !

Sometimes you need to schedule restart for your server maintenance. Restart-Computer does not have parameter for timing shutdown and you will have to use it with New-ScheduleTask which is available only in Ps 3.0 to create the schedule shutdown. Let's think it simple. We can use the build-in shutdown.exe in combination with powershell command.