Tuesday, May 10, 2016

How to add raid drivers in windows xp to Install windows xp f6 without floppy

I have been struggling to install a windows xp on a raid array.
In most cases windows does not have included drivers for ahci/raid controller will not detect no storage device and you will get a blue screen with stop code : 0x0000007B 

To solve this problem you can press F6 when the install starts but xp only accepts floppy disks that are absolute. You could buy one if you want, and better get some new floppy disks as well, as I once tried for one hour to write some drivers on some old floppy disks I had lying around.

The other way to do it is like this :
1. Extract an xp home or professional 32 or 64 whatever you need to install to a folder.
2. Download nLite and install it

    - open nLite and select the folder where you extracted the windows image and press next
    - on the next screen with preset just press next without doing nothing
    - on the next screen select/activate Drivers and Bootable ISO and press next
    - on next screen press the Insert button and select multiple driver folder - and when you are provided with a list of drivers select them all - if you have more folders or you are not sure witch are the good ones just select again Insert - multiple driver and add more
- press next to start the process and then Make ISO button

Write the image to a cd and you not get the blue screen and be provided with the install menu.

Saturday, March 26, 2016

Bluetooth handsfree / headsets with caller id on android or iphone

To be able to hear caller name in you bluetooth headset it must support the bluetooth protocol PBAP or Phone Book Access Profile - aka caller announce feature.

Plantronics has 3 headsets that offer this feature : Voyager Legend, Voyager Legend UC (B235/B235-M), Voyager Edge.
From Jabra : JABRA EXTREME2


If your headset does not support the protocol no play-store app will help you - I tries dozens of them.

Other bluetooth headset protocols are :

  • A2DP (Advanced Audio Distribution Profile):you can listen to audio from the phone (music, gps indications, youtube etc)
  • HFP (Hands Free Profile) : you can redial last number and activate voice dialing
  • AVRCP (Audio/Video Remote Control Profile) : control audio from device : stop, play, forward, backwards etc

Wednesday, March 23, 2016

Black title bar in Internet Explorer 8


Go to System Properties - Advanced - Performance - Settings
and select Adjust for best appearance and then back to what setting you want.

It usually happens when you change windows theme.

Monday, March 14, 2016

Change a partition letter without disk management

The easy way is to open Disk Management (diskmgmt.msc) and right click and chose change partition letter. But for ex in windows embedded posready 2009 you do not have this option.

Open regedit and navigate to HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
Rename \DosDevices\D: to \DosDevices\E:  for ex and then restart windows.


Sunday, March 13, 2016

VirtualBox showing only 32 bit os

Search for Turn windows features on or off
and deselect Hyper-v
Restart windows.

Tuesday, March 8, 2016

Resolve host name from IP address

For a windows machine you can check netbios records : 
 
nbtstat -a 192.168.1.50
 

To release or renew a DHCP ip type from cmd :
ipconfig /release 
ipconfig /renew

Hosts - file location : %SystemRoot%\System32\drivers\etc\hosts

To flush dns : ipconfig /flushdns

Monday, February 8, 2016

Free space on windows partition - Disable Hiberfil.sys and change virtual memory partition

1. Run cccleaner and free temporary files.
You can access temp folder by : %temp% manually

2. Disable Hiberfil.sys - around 4gb of space
Easiest mother open a cmd with administrator rights and type :
powercfg.exe -h off
powercfg.exe /hibernate off

3. Move Virtual Memory to other partition :
Open System Properties - Advanced -> In Performance section select - Settings - Advanced -> Virtual Memory - Change - Set to No paging file on windows partition and the select other partition and set it to System Managed size

Wednesday, November 25, 2015

Login locally to windows on a domain computer without typing computer name

To login to a computer that is in a domain and you want to log in locally instead of typing :
coputername\user
type :
.\
and it will show the computer name, then :
.\username

Sunday, November 22, 2015

Customize windows start - replace explorer

Open regedit and navigate to :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

Change shell attribute to nothing or your program.

Friday, November 20, 2015

3G mobile phone and Wifi N speed

3G + HSPA = Teoretical speed 7.2 MBs , real speed around 5.9Mbs

3G DIGI RDS SpeedTest

4G - Teoretical  speed of 150 Mbs

Digi RDS - LTE 4G 2600 MHz (TDD – canal 38)


WiFi speed test on N with a 150M Wireless Lite N RouterTL-WR740N and a ALLView A5 Smiley phone


Sunday, November 15, 2015

Install windows from a network location


First create a win pe image and either set up a pxe boot server or just boot from dvd or usb.

You will end up with a cmd prompt :
X:\windows\system32\>wpeinit

Map the location where you have the windows image :
net use n: \\networkpc\sharename passwords /user:username
cd n:\windows7
setup.exe

If you run into an error "autorun.dll" could not be loaded or is corrupt setup can not continue error code (0xC1). This means your version of WinPE is mismatched with your Windows ISO. Type ver at the WinPE prompt.

|   ver    | Win PE Version | Matching Windows ISO | 
----------------------------------------------------
| 6.0.6*** |     2.*        |    Windows Vista     |
| 6.1.7600 |     3.0        |      Windows 7       |
| 6.1.7601 |     3.1        |    Windows 7 SP1     |
| 6.2.9200 |     4.0        |      Windows 8       |
| 6.3.9600 |     5.0        |     Windows 8.1      |

Saturday, November 14, 2015

Windows cmd commands

  1. Remove folder with all content :
    rd /s /q       - faster and better then explorer for erasing large amount of files
  2. Change file/folder attributes
    attrib +shr -shr filename/folders - system file
    h - hidden file
    r - read only file
  3. View all files/folders including hidden/system etc
    dir /a
    dir /a:h   -
    display only hidden files
  4. View windows install date :
    systeminfo | find "Install Date"
  5. Force date and time sync
    net start w32time
    w32tm /resync /force
  6. Set date or time :
    date 04-15-2015


Wednesday, November 11, 2015

Open CMD while installing windows

To get access to a command prompt with a windows cd/dvd 
Press SHIFT+F10

Activate numlock on a tablet that does not have numlock button

Open notepad :

set WshShell = CreateObject("wScript.Shell")
WshShell.SendKeys "{NUMLOCK}"

and save as numlock.vbs

Run