Monday, August 16, 2010

Can't view PDF on the web

Possible fixes from Adobe:
http://kb2.adobe.com/cps/328/328233.html#main_Enable AdobePDF.dll

Sunday, February 14, 2010

Windows 7 / Windows 2008 Administrative Shares Access

I had to search around for the answer for this. But in Windows 7 / Windows 2008, the administrative share access is taken away. I found out when trying to access certain computers using \\computername\c$ and no matter what credentials I provided nothing worked. The workaround is below.

http://support.microsoft.com/kb/947232

Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

On the Edit menu, point to New, and then click DWORD (32-bit) Value.
Type LocalAccountTokenFilterPolicy to name the new entry, and then press ENTER.

Right-click LocalAccountTokenFilterPolicy, and then click Modify.

In the Value data box, type 1, and then click OK.

Exit Registry Editor.

The LocalAccountTokenFilterPolicy entry in the registry can have a value of 0 or 1. These values set the behavior of the entry as follows:

0 = build a filtered token
This is the default value. The administrator credentials are removed. These credentials are required for remote administration of the print drivers.

1 = build an elevated token
This value enables the remote administration of the print drivers on a server within a workgroup

Wednesday, February 10, 2010

Basic Access Query Tips

Here's a useful page on some quick tips when performing MS Access queries.

http://www.fontstuff.com/access/acctut06.htm

Thursday, January 28, 2010

Microsoft Office Outlook autocomplete transfer

To transfer the autocomplete data from one computer to the next follow the link below. For Vista or Windows 7 you just need to go to the same directory but instead of "Documents and Settings" you have "Users".

http://office.microsoft.com/en-us/outlook/HA011394511033.aspx

Wednesday, June 17, 2009

Repair / Clean print spooler

Read this article to help fix a problem where the print spooler does not start or keeps stopping after each start.

It says for XP but I have tested this on Vista and it corrected the problem I had.

http://support.microsoft.com/kb/324757

You can also use cleanspl.exe from Windows 2003 Resource Kit but this does not work for Vista.

Thursday, April 30, 2009

What happens when you run "Repair" on a network connection.

1. Attempt to renew DHCP Lease
2. Flushes ARP cache (arp -d *)
3. Flushes NetBIOS cache (nbtstat -R)
4. Flushes DNS cache (ipconfig /flushdns)
5. Re-Register NetBIOS name and IP address with WINS (nbtstat -RR)
6. Re-Register computer name and IP address with DNS (ipconfig /registerdns)

Thursday, February 26, 2009

Absolute positioning in a CSS container

Now this was a real pain to figure out as there wasn't much documentation on it. In order to successfully utilize absolute positioning inside a CSS container where the position will be relative to the container and not the window you will need to define the following:

#container {
position: relative
}

This will ensure that any object placed within this container will be positioned relative to it.


<div id="container">
...
...
...
</div>