Posts

Only one processor showing XP

This fix is if Windows XP is only showing one processor on a multi processor/core machine. 1. Boot to safe mode with networking  2. Delete (or rename) the following if they exist from C:\WINDOWS\System32\ hal.dll ntoskrnl.exe ntkrnlpa.exe (Check for these. They usually do not exist but delete them if they do) halmacpi.dll ntkrnlmp.exe ntkrpamp.exe 3. Copy the following into C:\WINDOWS\System32\ from the files described in the bottom note. hal.dll ntkrnlpa.exe ntoskrnl.exe 4. Reboot and it should fix itself the rest of the way.   NOTE: The new files in step 3 were taken from the originals which can be found on other machines in C:\WINDOWS\ServicePackFiles\i386: halmacpi.dll renamed to –>HAL.DLL ntkrnlmp.exe renamed to –>ntoskrnl.exe ntkrpamp.exe renamed to –>ntkrnlpa.exe

Outlook 2010 - Change default from-address gmail

Image
It took me a while to figure out how to change the default from address in Outlook when using gmail or a google apps account. I've done it in Office 2010. This will make your alias the default email address when sending any emails. It won't say "on behalf of" or anything like that. 1. Set up gmail account in outlook if you haven't done so already http://mail.google.com/support/bin/answer.py?hl=en&answer=77689 2. In file tab, open Options 3. Select Advanced Tab 4. Send/Recieve... 5. Edit... 6. Select your account and click Account Properties... 7. IMAP E-mail tab 8. Change E-mail Address: (not User Name) Now when sending emails from the original account, the email address will actually be the new one even when the original account is selected. Note: You can't use google apps sync with this solution; you have to use use calendar sync if you want use the calendar also. If you just want to change the from address once, you c...

Admin Group Policy fails to apply

Problem:  Group Policy doesn't apply, but gpresult doesn't show any problem. Some Policies are working on the same computer The same policy is working on other computers The windows log has an error with something like this: The client-side extension could not remove computer policy settings for ' ' because it failed with error code '0x8007000d The data is invalid.' See trace file for more details. Solution: Delete all files in this path:  C:\ProgramData\ Microsoft\Group Policy\History In Windows XP: D:\Documents and Settings\All Users\Application Data\Microsoft\Group Policy\History In a command window run "gpupdate /force" I ran into a problem where our administrator group policy was not applying for some reason, while other policies were applying. I could not find any information in gpresult or in any group policy settings or information. The policy is the same that is on all the other machines in the domain, and was working, except f...

Export Domain Users to CSV with PowerShell

Image
If you would like to create a list of all domain users in excel with a powershell script you are in luck. Quest software has created some pretty awesome tools to manage Microsoft Active Directory. Here's how to do it: 1.   You'll need to install the Quest ActiveRoles management shell v. 1.4 or later, located here:  http://www.quest.com/powershell/activeroles-server.aspx 2. Create a PowerShell file with the following script. Basically, just copy this text into a text file and rename the extension to .ps1. #This script requires Quest ActiveRoles management shell v.1.4 or later and Powershell to be installed. http://www.quest.com/powershell/activeroles-server.aspx #The script may be run on any machine that is bound to the domain and actively connected. You do not have to be a domain administrator. #Two files will be created. One CSV with results and one TXT log file. $strTimestamp =  [string](Get-Date -format "yyyy-MM-dd_hh-mm") start-transcript DomainScript...

Export Domain Admins to CSV with Powershell

It would be nice to be able to run a PowerShell script to query certain domain groups in Microsoft Active Directory, and write them to .CSV files for easy review in excel. Here's one way to do it: 1. You'll need to install the Quest ActiveRoles management shell v. 1.4 or later, located here:  http://www.quest.com/powershell/activeroles-server.aspx 2. Create a text file with .ps1 extension, and the following text. You can review the comments in the script to see what each part does, or just google the commands you don't know. Quest has some documentation last time I checked. #the AD groups that will be queried. These are groups that are considered domain admins $aGroups = @("Administrators", "Domain Admins", "Server Operators", "Enterprise Admins", "Account Operators", "Backup Operators", "Group Policy Creator Owners", "Schema Admins",  "Domain Controllers") #where the resu...

Windows 7 Shared folder on All Users Desktop

Image
This is very similar to a previous post that I've done, but I thought it is worth mentioning since this is done differently than XP. I wanted to create a shortcut to a shared folder for all users that log in to a Windows 7 machine. In XP, you can just create a shared folder in shared documents, and create a shortcut to it in the all users desktop. In Windows 7 you can't do this, so you'll have to create a symbolic link. 1. Create the folder you want to link. I just created a folder named "Shared" in C:\Users\Public\Documents. Everyone already has access to this folder, but it's not super easy to find. 2. Open the command prompt as administrator. (find "cmd" and right-click then click run as admin, you'll see administrator in the window title) 3. Run this command to create the link:  "mklink /J C:\Users\Public\Desktop\Shared C:\Users\Public\Documents\Shared"

Change your blog URL to dot com

Image
I haven't had a ton of experience with blogs, so I wan't sure if I could purchase a domain name and still have my blog hosted by blogspot. I was thinking that I would have to purchase from godaddy.com and do some funny business like redirecting to my blog website, or move the content and possibly pay for server space. I've seen some solutions say that you need to move where your hosted content is if you want to get a .com, .net or something similar. Google has made it super easy to change the URL (if you purchase the domain from them). Domains from Google are $10/year which is reasonable. I don't know if WordPress or other blogging sites have options to purchase domains, but it only makes sense. The good news is that the old URL and new URL both work, so your countless hours of SEO won't be wasted. This website is available from both places: www.yanzzee.com yanzzee.blogspot.com Making the change was super easy, but was still new to me, so this is what I did: ...