seanism DOT com Random thoughts from the world of seanism

23Nov/110

Connecting Windows 7 to a Windows XP share

If you are having trouble connecting a Windows 7 machine to a Windows XP share try enabling Network security: LAN Manager authentication level - Send LM & NTLM responses.

  1. Open the run dialog and type gpedit.msc and press enter.
  2. Open Computer Configuration
  3. Open Windows Settings
  4. Open Security Settings
  5. Open Local Policies
  6. Open Security Options
  7. Find Network security: LAN Manager authentication level and change it to Send LM & NTLM responses
For more info on the settings see the Microsoft TechNet article.
11Nov/110

Windows 7 prompting for credentials when accessing SharePoint documents

Sympton
You are prompted to enter your credentials, even though the user account that you are using has sufficient permission to access this site.

For example, when you open a Microsoft Office file from a Microsoft Office SharePoint site by using 2007 Microsoft Office on a Windows 7-based client computer that has no proxy configured, you are prompted for authentication.

Solution
you have to create a registry entry. To do this, follow these steps:

  1. Click Start, type regedit in the Start Search box, and then press ENTER.
  2. Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
  3. On the Edit menu, point to New, and then click Multi-String Value.
  4. Type AuthForwardServerList, and then press ENTER.
  5. On the Edit menu, click Modify.
  6. In the Value data box, type the URL of the server that hosts the Web share, and then click OK.Note You can also type a list of URLs in the Value data box. For more information, see the "Sample URL list" section in this article.
  7. Exit Registry Editor.
  8. Restart the WebDAV service.
  9. Open an elevated command prompt and type in net stop WebClient && net start WebClient
  10. Reconnect to your SharePoint site.
source: http://support.microsoft.com/kb/943280
28Sep/110

Windows 7 firewall network location

If you have a computer that is connected to a domain and is plugged into the domain network but doesn't have the domain profile active in the firewall settings of Windows 7 check to make sure you have your domain DNS server set as your primary DNS.

I had a client have an external DNS set for "faster internet" but it was causing errors on the machine because the PDC couldn't communicate with it correctly.

18Aug/110

MotoHelper 2.0.24 Consuming free space

A client of mine's laptop ran out of free space.  I did a scan and noticed the file MotoHelper.log was using it all.   After deleting the file it began to consume all the free space again after a few days.  I uninstalled the MotoHelper software and all is well.  I couldn've tried updating it but the client did not need the software.

The file path is...
C:\Program Files\Motorola\MotoHelper\MotoHelper.log

18May/110

ESET Online Scanner

Recently a client of mine got some spyware.  I cleaned it up with Malware Bytes as I usually do but she was still experiencing popups in Internet Explorer.  I reset IE and ran additional scans but the PC kept getting popups.  I downloaded and ran ESET's Online Scanner and it caught all the spyware Malware Bytes missed.

ESET Online Scanner

8Feb/110

Migrate a Repository Subfolder to Another Repository

If you have a subfolder that you'd like to migrate from one repository to another SVN has some built in tools that allow you to do that.

  1. Open a command prompt and point it to the directory SVN is installed.  For Windows that is C:\Program Files\VisualSVN Server\bin.  The default Repository directory is C:\Repositories.
  2. Type: svnadmin dump "path to Repository" > repoDumpFile.dmp
  3. You'll then to filter out everything but the sub directory you want to migrate.
    Type: svndumpfilter include "Path to Subfolder" < repoDumpFile.dmp > Filtered-repoDumpFile.dmp
  4. The above command will include all revisions even those not relevant to the subfolder you are migrating.  If you'd like to remove the non relevant revisions and/or re number them you can use the below command instead of the above.
    Type: svndumpfilter include "Path to Subfolder" --drop-empty-revs --renumber-revs < repoDumpFile.dmp > Filtered-repoDumpFile.dmp
  5. Let's create the new Repository.
    Type: svnadmin create "Path to Repositories\New Repository Name"
  6. Now we import the file.
    Type: svnadmin load --ignore-uuid "Path to Repositories\New Repository Name" < Filtered-repoDumpFile.dmp

References: http://svnbook.red-bean.com

3Feb/110

Quickbooks 2009 & Mapped Drives

A client of mine is using Quickbooks 2009 and has been having issues with accessing Quickbook files hosted on the Quickbooks database server.  All firewall ports are open, the database server is running and the Quickbooks Connection Diagnostic Tool says everything passes.  They access the files from a mapped drive to the server.  It's never ran or performed as well as I think it should on a gigabit network with fairly new machines.

After doing some research I tried accessing the Quickbooks files over a UNC path rather then a mapped drive.  The performance difference was night and day.  The files opened nearly instantly and it ran as if the QBW files were locally stored.

From Intuit's website...
Note: In prior versions of QuickBooks, Intuit recommended that a mapped network drive be used to access QuickBooks company files. With QuickBooks 2006, the UNC path, or direct path to the company file will work better than a mapped drive.

References: Network Diagnostic Tool, Should I use a mapped drive?

28Dec/100

Outlook 2010: “0x8004010F: Outlook data file cannot be accessed”

A client of mine was having the error 0x8004010F in Outlook 2010.  I repaired the PST and it fixed 30 or so errors but I was still having the issue. I ended up creating a new Outlook profile using the following link...
http://support.microsoft.com/kb/2289904

After creating the new profile I could not open or export the previous PST.  I realized she had checked the option Run this program in compatibility mode for: Windows XP checked.  Once I unchecked that Outlook 2010 could open & export the previous PST.

28Dec/100

Outlook 2010 prompting for UAC everytime it’s opened

If Outlook 2010 is prompting for UAC everytime you open it check to make sure you don't have Run this program in compatibility mode for: or Run this program as an administrator checked.

21Oct/100

Printer goes offline after successful print job

If your printer in Windows Server keeps going offline even if its status says 'Ready' and you know its online try disabling SNMP on the Server.

Right click the printer and choose Properties.  Under the Ports tab click Configure Port... and uncheck SNMP Status Enabled.