Wednesday, December 30, 2009
FlashPlayer 10 will not work for nonadministrators
HKCR\CLSID\{D27CDB6E-AE6D-11cf-96BB-444553540000}
Ensure that the Everyone group has full access to this key
Wednesday, September 16, 2009
Grant User-Group permissions to all mailboxes
Get-Mailbox|add-mailboxpermission -user "
Saturday, August 22, 2009
Converting Office 2007 Templates to OpenOffice 3.1
- Install rpm2cpio and cpio: sudo apt-get install rpm libgif4
- Download the latest ODF Converter RPM from http://download.go-oo.org/tstnvl/odf-converter/RPMS/x86_64/ into a temporary folder.
- Extract the package by executing:
rpm2cpio odf-converter*rpm | cpio -ivd
- Next copy the contents of
/usr/lib/ooo3/program/OdfConverter to /usr/bin using the command: sudo cp usr/lib/ooo-2.0/program/OdfConverter /usr/bin
- This program requires libtiff.so.3 which is not present in the 64-bit Ubuntu 9.04. Create a symbolic link in /usr/lib called libtiff.so.3 to libtiff.so.4 by executing: sudo ln -s /usr/lib/libtiff.so.4 /usr/lib/libtiff.so.3
- Run sudo ldconfig to update the library cache.
- The converter is now installed.
OdfConverter /i
This will create a OpenOffice template of the Office 2007 template in the directory where the template was saved.
Thursday, July 9, 2009
Citrix Linux ICA Certificate issues
"You have chosen not to trust
Then the client fails to connect. This can be resolved by placing the X509 certificate (with crt extension) into the citrix ICA keystore. From Firefox, highlight and export the CA in DER format. Next rename this file and change the extention to crt. Finally, with admin credentials, copy this file to usr/lib
Monday, June 22, 2009
Export a Selection List From BackupExec
For documentation purposes, it is sometimes necessary to be able to extract the selection list to a file. There are 2 ways to do this:
- The first way is to schedule a new job with the same list. On completion of the job the selection list will be displayed. From this you can copy and paste into the document.
- The second way is to query the Backup Exec SQL database. Execute the following SQL query to return all items in all selection list.
SELECT [ScriptName],[ScriptDescription],[DeviceSelectionName],[PathName],[FileName] FROM [BEDB].[dbo].[vwScriptPropertiesBackup]
This query can be trimmed down using the appropriate where clause.
Wednesday, June 17, 2009
Exchange 2007 OWA "Insufficient Access Rights"
1. Launch Active Directory Users and Computers
2. From the View menu, select Advanced.
3. Locate the user in AD, right click, properties.
4. Navigate to the security tab.
4. Click "Advanced"
5. Click "Allow inheritable permissions from the parent to propagate to this object and all child objects.
6. Click Apply
7. Click OK and OK again.
Tuesday, June 16, 2009
Alter SQL Server Internal Name
USE master;
GO
Select * from sysservers;
GO
The srvname in the output reflects what SQL thinks the server name is. When altering a server's NetBIOS name that is running SQL, the srvname field needs to be updated. To achieve this execute the following query:
EXEC sp_dropserver 'oldname';
GO
EXEC sp_addserver 'newname', 'LOCAL';
GO
Where oldname is the server's original NetBIOS name, newname is the new NetBIOS name and LOCAL specifies that the server is a local (not remote) server.
Monday, May 11, 2009
Default Printer Cannot Be Set
Wednesday, April 29, 2009
Chinese Delivery Status Notifications In Outlook 2002
Get-TransportServer|Set-TransportServer -InternalDSNSendHtml $False
Monday, April 27, 2009
DFS and BackupExec
Friday, March 27, 2009
HyperV Client Access Via Remote Destop
Thursday, March 19, 2009
Exchange OWA Redirect
Exchange 2007
(script language="'JavaScript'")window.location='https://
Exchange 2000/2003
(script language="'JavaScript'")window.location='https://
This will allow redirection to the secured page for logon.
Wednesday, March 11, 2009
Speed Up Network Connections in Vista
netsh interface tcp show global
To disable these, issue the following commands:
netsh interface tcp set global autotuning=disabled
netsh interface tcp set global chimney=disabled
netsh interface tcp set global rss=disabled
To re-enable the original settings, issue:
netsh interface tcp set global autotuning=normal
netsh interface tcp set global chimney=enabled
netsh interface tcp set global rss=enabled
Note that to re-enable autotuning set it to normal.
Saturday, February 28, 2009
Grant Full Permissions to All mailboxes in Exchange 2007
Get-MailboxDatabase -Server
Once complete, restart the Exchange Information Store service for the settings to take effect.
Remove Disconnected Mailboxes In Exchange
Removing Disconnected mailboxes in exchange is now a multi-step process. The first part is to get a listing of the disconnected mailboxes so that the GUID of it can be obtained. Then, using this GUID and the name of the mailbox database, the second command is then executed to actually remove the mailbox
To list all disconnected mailboxes, issue the following command into the command shell:
Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Then to actually remove the mailb0x issue:
Remove-Mailbox -Database
If you wish to remove all disconnected mailboxes at the same time, issue the following from the command shell to get a list of all users:
$users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Next issue the following to remove all:
$users | ForEach { Remove-Mailbox -Database "Mailbox Database" -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }
Friday, February 27, 2009
Changing the SQL Server that Citrix IMA References
dsmaint config [/user:username] [/pwd:password] [/dsn:path to filename]
Enterprise Root CA Certificate Generation Issue
certreq -submit -attrib "CertificateTemplate: WebServer" WebServerCertReq.txt
This will force the server to use the certificate template for a server.
Tuesday, January 27, 2009
Oh My God! I Forgot My Ubuntu Password
- Reboot the system, when the grub loader screen appears, press [esc].
- This brings up the boot selection screen, highlight the version you wish to load.
- Press e to edit the loader.
- Locate the line that begins with Kernel..... At the end of this line enter the following string
rw init=/bin/bash - press enter to exit the edit mode. Then strike b to boot that version
- The system will then boot into the root shell
- Enter passwd
you will be prompted for a username, enter the username as desired. - Restart the system. On restart the system will return to the graphic interface. Enter the new password for your username to logon.
Tuesday, January 20, 2009
Outlook 2003 and 2007 PST File Size Limits
Set the Maximum File Size
Name: MaxLargeFileSize
Type: REG_DWORD
Range: 0x00000001 – 0x00005000
Default: 0x00005000 20,480 (20 GB)
Set a Warning When Approaching the Maximum Size
Name: WarnLargeFileSize
Type: REG_DWORD
Range: 0x00000000 – 0x00005000
Default: 0x00004C00 19,456 (19 GB)
Maximum Size PST can grow after limit is reached
Name: MaxFileSize
Type: REG_DWORD
Range: 0x001F4400 – 0x7C004400
Default: 0x7BB04400 2,075,149,312 (1.933 GB)
Maximum Size for Warning beyond limit
Name: WarnFileSize
Type: REG_DWORD
Range: 0x00042400 – 0x7C004400
Default: 0x74404400 1,950,368,768 (1.816 GB)
This information taken directly from Microsoft KB Article KB832925
Exchange 2007 Mailbox Export Headaches
Exchange 2007 is not supported running on a 32bit OS, but this is OK as we are only going to install the management tools.
Pre-requisites:
.NET Framework 2.0 SP1
MMC 3.0
Windows Powershell 1.0
Outlook (2003SP2 minimum)
Once the prerequisites are installed, then run the Exchange 2007 install and install only the tools. Alternatively, you can acquire the Exchange 2007 32bit management tools from Microsoft
On completion, and assuming your account has administrative permissions into exchange you can execute the following cmdlet from within powershell.
Export-Mailbox -Id "alias or email address" -PSTFolderPath "path to PST folder"
Alter SQL Server Database Name after imaging
sp_dropserver
then add the new server name by executing
sp_addserver
If this is not done then features such as replication and logshipping will have issues.
Monday, January 5, 2009
Exchange 2007 Default Mailbox Freature Setting
Set-CASMailbox -Identity emailaddress -OWAEnabled $false -ActiveSyncEnabled $false