Home » Posts tagged 'Amp'
Windows 7 & Vista host file edit and location
  You can use windows host file to create static entries for name resolution You can’t edit host file as regular user. In order to edit hosts file you need to have administrative privileges. Windows 7 or Vista host file is located under the following path %systemroot%system32driversetchosts  usually it is  C:windowssystem32driversetchosts To edit the host file, Locate your “Notepad“ program , right-click on it and select “Run as Administrator“. If you are not logged Read more
Snap Manager for Exchange sends autosupport notifications on every snapshot
  The issue is been caused by bug: Nettap have ID398716 filed for this issue. https://now.netapp.com/NOW/cgi-bin/bol?Type=Detail&Display=398716 Please see workaround posted bellow. It is possible to disable this ASUP by setting DWORD REG value name "NoGeneralASUPMessage" to 1 under HKEY_LOCAL_MACHINESOFTWARENetwork ApplianceSnapManager for ExchangeServer Restart SnapMgrService Read more
Outlook Delay or schedule Email Send
Recently I had to release email after work hours and I wondered if outlook have that option and I was verry happy to find it. To schedule automatic email send follow the steps. After you finished writing your  email, don't click Send (yet). In Outlook 2007: Click Options Then click on Delay Delivery and schedule when to send the message     Just fill when you want to send the message as seen on the image bellow _______________________________________________________________________________________ Read more
Find Active Directory Failed Login Users – Power Shell Script
The script bellow allows you to locate users with invalid logon attempts $strFilter = "(&(objectCategory=User)(badPwdCount>=0))" $objDomain = New-Object System.DirectoryServices.DirectoryEntry $objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = $objDomain $objSearcher.PageSize = 1000 $objSearcher.Filter = $strFilter $colProplist = "name" foreach ($i in $colPropList){$objSearcher.PropertiesToLoad.Add($i)} $colResults = $objSearcher.FindAll() foreach Read more
Find Email in Active Directory Domain Using CSVDE/LDIFDE
In windows 2003 and later you can use AD saved queries , but for windows 2000 domain the only way is by using CSVDE/LDIFDE The following command should do the work :You will receive file output csvde -f outputfilename.csv -d "dc=domain,dc=com" -r "(&(mailnickname=*)(proxyAddresses=smtp:email@yourdomain.com))" -l name Change  "dc=domain,dc=com" to  your AD domain name and suffix, and email@yourdomain.com with the email address you're looking for. To find all recipients who have an email address Read more
Reports required as part of the IT Audit process
  • Password Aging
  • User Privileges
  • System Privileges
  • Remote Access
  • Consolidated Change Logs
  • NTFS Permissions
  • Role Permissions & Membership
  • User Access
  • Auditing Enabled
HTTP Error 503: Service Unavailable on Black Berry device
You may receive "HTTP Error 503: Service Unavailable" error when you are using Black Berry browser. If your BlackBerry Mobile Data System (BlackBerry MDS) service is not enabled on your BlackBerry Enterprise Server or for your BlackBerry device user account. Resolution 1 Enable MDS Service on you BES Server by completing the following steps: Go to Server Configuration tab. Expand Service Control & Customization. Click BlackBerry MDS Connection Service. Enable the BlackBerry Mobile Data Read more
VMware ESX post install tips – Part 1
ESX Stop Firewall and IpTables chkconfig firewall off > /dev/null 2>&1 chkconfig iptables off > /dev/null 2>&1 chkconfig --level 3 portmap on > /dev/null 2>&1 chkconfig --level 3 netfs on > /dev/null 2>&1 chkconfig --level 3 vmware on > /dev/null 2>&1 chkconfig --level 3 vmware-late on > /dev/null 2>&1 chkconfig --level 3 mgmt-vmware on > /dev/null 2>&1 service firewall restart > /dev/null 2>&1 service iptables restart Read more
How blackberry email reconciliation-(Deleting Emails) works.
What is email reconciliation? Email reconciliation is used to configure email deletion handling option of email accounts that are set in BB device. For each mail account you can state whether you want the e-mail deleted on the handheld or the mailbox and handheld; You can set the device the following ways: Enable or disable wireless reconciliation and configure how conflicts are handled. In order to set reconciling options on Black Berry Device go to: Messages --> then select "Options"--> Read more
Active Directory Saved Queries Templates
In order to configure and use server query do the following. Go to Active Directory Users and Computers: Right click the Saved Queries folder and select New, Query. Enter an appropriate Name and Description. Make sure the query root is set to the domain level you want the query to pertain to. Select the Include subcontainers check box if you want the query to search all subcontainers. Click Define Query. In the Find dialog box, click the Find drop-down arrow and select Custom Search. On the Read more