Depending on how your Windows servers are configured, you may need to disable SSL v3. Note that older versions of Internet Explorer may not have the TLS protocol enabled by default. If you disable SSL versions 2.0 and 3.0, the older versions of Internet Explorer will need to enable the TLS protocol before they can…
Category: Windows
nvvsvc.exe C++ Runtime Error
If you are getting this error you will be getting a black screen and a mouse pointer only. This will be the same even if you login to safe mode or low graphics mode. Here is the fix: If you have another OS installed in the system (you have a multiboot system): 1. Log-in to…
Exchange 2007: Give a user full access to all mailboxes
The following command will give full access to the Mailbox database including future mailboxes when they are created. Just change the name of the Mailbox Database to yours and the name to the one you wish to use
1 |
Get-MailboxDatabase -identity “Mailbox Database†| Add-ADPermission -User "Trusted User"-AccessRights GenericAll |
Now access to all mailboxes:
1 |
Get-Mailbox -ResultSize Unlimited -Database "Mailbox Database" | Add-MailboxPermission -User "Trusted User" -AccessRights FullAccess |
For Send As:
1 |
Add-ADPermission -Identity "Mailbox Database" -User "Trusted User" -ExtendedRights Send-As |
For Recieve As:
1 |
Add-ADPermission -Identity "Mailbox Database" -User "Trusted User" -ExtendedRights Receive-As |
In exchange…
Windows: Remove hidden NIC
Applies to Windows 2003 I was getting this error after have made some change with my virtual NIC adapters. The error I was facing was this one, when I was making changes to the only NIC there was installed: The IP address XXX.XXX.XXX.XXX you have entered for this network adapter is already assigned to another…
This operation has been cancelled due to restrictions in effect on this computer.
Trying to open a hyperlink in Microsoft Office Outlook or Microsoft Office Word – you receive the following error message and subsequently cannot open the hyperlinks: This operation has been cancelled due to restrictions in effect on this computer. Cause: Upgrading Internet Explorer from a previous version or uninstalling Google Chrome can corrupt dependent registry keys….
Exporting Site List from IIS 7.x
Open up command prompt Type:Â %windir%\system32\inetsrv\appcmd list site > c:\sites.csv Open the Sites.csv file in Excel!