Create the following DWORD key NoInternetOpenWith = 1 at
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
My 2cent tips & tricks on computer technology & Application Virtualization ...
Tuesday, September 23, 2008
Thursday, September 18, 2008
Tips: Linux: Mount NTFS Share
mount -t cifs //<IPAddressOfRemoteMachine>/<Share> -o username=myntaccount,password=mypassword /mnt/ntfs
Wednesday, September 17, 2008
FAQ: App-V: How to use the custom Exclusion List while Sequencing
Steps to create the custom exclusion list.
Using the custom exclusion list
- Launch the AppV sequencer.
- Goto Tools -> Options
- Select "Exclusion Items" tab
- Add new exclusion items using "New Button"
- When all the exclusion items are added then press "Save As Default" button
- Copy the default.sprj file from "C:\Program Files\Microsoft Application Virtualization Sequencer\" or the folder where the sequencer was installed to some network share from where it can be accessed later.
Using the custom exclusion list
- Copy the saved default.sprj file to "C:\Program Files\Microsoft Application Virtualization Sequencer\" before launching the Sequencer.
- When launched the sequencer will take the exclusion list from the default.sft file.
Friday, September 12, 2008
Imaging WinXP using Knoppix
- Boot from knoppix
- Repartition your drive
- Base Partition - This is were your winXP is installed
- Image Partition - this is were your image of windows xp will be copied
- mount the image partition: mount /dev/sda2 /media/img
- Use the command to create the img: ntfsclone -s -o /media/img/winxp.img /dev/sda1
- use the command to restore the img: ntfsclone --restore-image -O /dev/sda1 /media/img/winxp.img
- Enjoy
Note: It is a good idea to have ext3 as filesystem for your image partition so that the image file is not deleted accidentally and also it overwrites the FAT32 2GB filesize limit.
Monday, September 8, 2008
TIPS: dbus: UUID file '/var/lib/dbus/machine-id' contains invalid hex data
Whenever you get the above error then it can be resolved by executing the following command
dbus-uuidgen > /var/lib/dbus/machine-id
TIPS: dpkg Error: dpkg: too many errors, stopping
apt-get and dpkg are great package management tools but there might be a time that you can face the following error:
also when you try `apt-get upgrade` or `apt-get dist-upgrade` you will be adviced that the previous application installation was not successful thus they should execute `dpkg --configure -a` and it returns the above error.
To resolve the issue run the following command
dpkg: too many errors, stopping
also when you try `apt-get upgrade` or `apt-get dist-upgrade` you will be adviced that the previous application installation was not successful thus they should execute `dpkg --configure -a` and it returns the above error.
To resolve the issue run the following command
dpkg --configure -a --abort-after=99999
Subscribe to:
Comments (Atom)