Again, as per business requirement, we are looking for some free internal (LAN) chat solution. There are some free LAN chat tools available but most of them are failed to detect multiple VLAN, only working fine in single VLAN. But we need something which can be implemented on more than 50 branches across India. So we are looking for a
Category: PowerShell
PowerShell Basics, PowerShell Scripts, PowerShell Modules, PowerShell Remoting, PowerShell Functions, PowerShell Active Directory, PowerShell Security, PowerShell Error Handling, PowerShell Variables, PowerShell Objects, PowerShell Package Management, PowerShell, PSCustomObject, cmdlet, PowerShell pipeline, PowerShell ISE, PowerShell 7, pwsh, Get-Command, Get-Help, Invoke-RestMethod, Import-Module
Automatic NT-Backup (System State Backup) with retention period and e-mail notification after complete.
A simple script for automatic System State backup where you can easily set backup retention period and it also send you an e-mail notification after completion. With this script you can also archive backup log and if you wish u can also set backup log retention period. It can also set backup files with date stamp. For e.g., SysBackup_ComputerName_24-03-2009.bkf You
Automatically configure Outlook with Exchange on First Logon
Few simple steps to configure Outlook (2000/2003/2007) with MS Exchange on first logon: It’s really not so difficult to configure outlook on first logon, you just need a PRF(Microsoft Outlook profile file) file. To create PRF file you need to download Office 2003 Editions Resource Kit Tools from following location. Download And you need Office Source Setup files. After install
Disable UNC Path security warning from Group Policy
OS Dependent Logoff/Logon Script run via GPO
Use following VBS script Startup or Shutdown script.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Option Explicit Dim objItem, colItems, objWMIService, strComputer, objShell strComputer = "." Set objShell = CreateObject("WScript.Shell") Set objWMIService = GetObject("winmgmts:\" & strComputer & "rootcimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_OperatingSystem",,48) For Each objItem in colItems If InStr(objItem.Caption,"2000") Then 'Add your line here for 2000 objShell.Run "regedit", 1, True End If If InStr(LCase(objItem.Caption),Lcase("XP")) Then 'Add your command line here for 2000 objShell.Run "calc", 1, True End If If InStr(LCase(objItem.Caption),Lcase("2003")) Then 'Add your command line here for 2000 objShell.Run "notepad", 1, True End If Next |
with above script, on Windows 2000 it will execute regedit.exe, on Windows XP it will execute calc.exe, and on Windows 2003 it will execute notepad.exe. You can change the file as you wish..




