Tuesday, September 30, 2014

AsusSetup pop-up error - C:\Users\Username\AppData\Local\Temp\ 132218 Log.iniis lost

At start-up on a limited user account, or if you clean the temp folder you get :


To fix-it you have to delete the schedule task : i-Setup105832
Open Task Scheduler - In Control Panel under Administrative Tools, or type Task Scheduler in Start menu.


Tuesday, September 23, 2014

Configure a software raid 1 mirroring in windows 7

You need to use a HDD as big or bigger then the one you want to mirror, one identical would be best.

Open Disk Management either by accessing Computer Management by Right click - on My Computer - and select Manage - then select under Storage - Disk Management
or type in Run - diskmgmt.msc

IF you want to make a mirror to your active windows hdd you MUST start first with the System Reserved partition (100MB NTFS) or convert the whole hdd to dynamic first.
(if you start mirroring from the second, third etc partition you will not be able to mirror the System Reserved partition unless you wipe the hole hdd and reinstall windows)




Right click System Reserved partition and select Mirror volume - select the empty disk press OK and then you will be asked if you want to convert the two HDD to dynamic disks.
Select OK.
Wait for each mirrored partition to sync or it will take many hours to sync them in parallel


This will only work with MBR formated HDD - and for booting/installing Windows you must select in BIOS - boot options Legacy Mode (not UEFI).
If you chose to install windows with GPT partitioning style it will create some system reserved partitions that are not visible in disk management so you will be unable to mirror them.

RAID 0 - stripping for performance
RAID 1 - MIRRORING
RAID 10 - https://www.youtube.com/watch?v=bcCfVYZa0k0

Monday, September 22, 2014

Windows sharing from limited user - access denied

Open Network and Sharing Center click Change advanced sharing settings

Public folder sharing - select - Turn on sharing so anyone with network access can read and write files in Public Folders
Password protected sharing - Turn off password protected sharing


After you access the shared computer with the printer you receive and Access denied message when you want to access the printer.
Go to Control Panel - User Accounts - Credential Manager - Add a Windows credentials


Printer not appearing in devices and printers

Devices and Printers icon of the printer is missing but you can find the printer when you print from applications.
Go to services and find :
  • Device Association Service
  • Device Install Service
  • Device Setup Manager
Start them all and if you have more device ... something services start them all, and if any is on disabled put it on manual - they should appear as Manual (Trigger Start) - and restart the computer, then the printer should appear.

Thursday, September 11, 2014

NTLDR is missing


You have to enter Windows Recovery Console :

Insert Windows Xp cd and select to boot from CD.
At Welcome to Setup press R for repair.


Select the number for your windows instalation ( most often 1 ).
Enter Administrator password. Then type :

copy x:\i386\ntldr c:\
copy x:\i386\ntdetect.com c:\

bootcfg /rebuild - to generate a new boot.ini file
Enter Load Identifier: Windows XP
Enter OS Load options: /Fastdetect  


After you boot in windows check that all 3 files are sistem, readonly and hidden so they don't get deleted again.
Open cmd, go to C:\ type attrib
To add all attributes type :
attrib +S +H +R C:\boot.ini
attrib +S +H +R C:\NTLDR
attrib +S +H +R C:\NTDETECT.COM 

If you want to manually edit boot.ini first must remove attributes :
attrib -S -H -R C:\boot.ini
then add them back :
attrib +S +H +R C:\boot.ini

Monday, September 8, 2014

Open File Security Warning Prompt at Start-up


Intel chipset :
C:\Windows\system32\igfxtray.exe etc

The problem is caused by downloading an exe file with IE that adds a Zone Identifier.


To check that it's a zone.identifier caused by downloading the file with IE type :
dir /r C:\WINDOWS\system32\igfxtray.exe
where /r :
  /R          Display alternate data streams of the file. 
and you should see something like ZoneIdentier NTFS data stream

To remove the zone right click the file select properties and select Unlock.



Streams utility can scan and remove the Zone.Identifier 

You can either scan all the Windows folder or the C: drive with the command :

Streams.exe /s C:\Windows 

Remove the zone with :

Streams /d C:\WINDOWS\system32\igfxtray.exe