If you have your music files stored on a server on your network. When you try to add the share \\ServerName\Share as a libray location you get the error ”This folder cannot be included because it is on a share that is not indexed.”
Thursday, October 08, 2009
Adding Network Shares as a Library Location
If you have your music files stored on a server on your network. When you try to add the share \\ServerName\Share as a libray location you get the error ”This folder cannot be included because it is on a share that is not indexed.”
Friday, October 02, 2009
"ISA server cannot load the properly page"
The ISA Server though maybe still working, if you restart the server you will probably still have the same problem.
Solution:
Managment console view maybe corrupt.
You need to clear out the console view settings by going to:
File>Options>Delete Files button. I then shut down the console and restarted the ISA Server Managment console and everything was back to normal.
In case youre wondering how to get into the managment console even though you get an error, just keep clicking continue until the console loads up.
Wednesday, July 01, 2009
Test a port is open
One way is to use old telnet.exe like this to find out if a port is open.
Syntax: telnet [hostname or IP address] [portnumber]
Example: telnet myserver 27000
You can also try the IP of the computer, server or host. You must be able to Ping that address.
If the window hangs while saying "Connecting ..." and then goes away, the port is not accessible. If the window instantly goes away, the port is probably not accessible. If the window display text, like "220 ESMTP spoken here" or just shows an empty window the port is open.Or if run in a command window:C:\>telnet myserver 27000Connecting To myserver...Could not open connection to the host, on port 27000: Connect failed
But if you have Windows Vista you probably don't have telnet because it is not installed as default.
Click Start, Control Panel, Programs, and then Turn Windows Features on or off. In the list, scroll down and select Telnet Client. Click OK to start the installation. Or you can just run: start /w pkgmgr /iu:"TelnetClient"
Now you should be able to check if a port is open or closed or not accessible. If it is not accessible start checking if the firewall is the issue.
Here are some usable links:
How to manually open ports in Internet Connection Firewall in Windows XP
Open a port in Windows Firewall in Windows Vista
Troubleshooting Windows Firewall settings in Windows XP Service Pack 2
Additional comment by Matt
The telnet approach works pretty well for a single port. If you know what you're doing you can even use it to send POP/SMTP/ETC commands.
But you ought to try "Angry IP Scan" http://www.angryziber.com/ipscan/ for when you need a broader scan (multiple ports or multiple hosts or both).
Tuesday, June 02, 2009
Problems with IE 8
Internet Explorer 8: Web sites do not display or work correctly
More advanced users may want to review the following methods to resolve the problem.
http://support.microsoft.com/kb/967897
If all else fails start IE 8 with out Add-in and then reset Internet Explorer
- Run Internet Explorer in No Add-ons mode
Browser add-ons can sometimes interfere with or conflict with other software on your computer. Start Internet Explorer without add-ons to see whether the problem is resolved. To do this, follow these steps: - Click Start, and then type Internet Explorer in the Start Search box.
- Click Internet Explorer (No Add-Ons). Internet Explorer opens without add-ons, toolbars, or plug-ins.
- Test Internet Explorer to verify that it works correctly.
- Click the Advanced tab, and then click Reset.
- In the Reset Internet Explorer Settings dialog box, click Reset.
- When Internet Explorer finishes restoring the default settings, click Close, and then clickOK two times.
- Close Internet Explorer, and then reopen it. The changes take effect the next time that you open Internet Explorer.
Tuesday, May 19, 2009
Installing additional drivers at setup via USB floppy
You will need to download the driver from the manufactures website and then copy the matching .sys, .cat, .oem and .inf drivers to a floppy disk.
If you are installing to a machine with out a floppy disk driver you will need to use an external USB floppy disk drive.
During the installation after you have configured the partitions, the installation will request the driver files again if the driver fails to load it may be that the driver .OEM is not optimised to look for the USB floppy drive.
You will need to edit the TXTSETUP.OEM file adding the following information:
[HardwareIds.scsi.MSAS2K3]
...
...
id = "USB\VID_03F0&PID_2001", "usbstor" #--HP
id = "USB\VID_054C&PID_002C", "usbstor" #--Sony
id = "USB\VID_057B&PID_0001", "usbstor" #--Y-E Data
id = "USB\VID_0409&PID_0040", "usbstor" #--NEC
id = "USB\VID_0424&PID_0FDC", "usbstor" #--SMSC
id = "USB\VID_08BD&PID_1100", "usbstor" #--Iomega
id = "USB\VID_055D&PID_2020", "usbstor" #--Samsung
id = "USB\Vid_0930&PID_6540", "usbstor" #--MY USB KEY
Tuesday, May 12, 2009
Internet Explorer 7 open multiple tabs
Although you can specify multiple URL’s as default homepages, this might not be what you want.A solution to open several tabs at once for only one time, can be made with Windows Scripting Host, or wscript.
First, create a new text document with Notepad or some other text editor and add the following content:
var navOpenInBackgroundTab = 0x1000;
var oIE = new ActiveXObject("InternetExplorer.Application");
oIE.Navigate2("http://www.itexperience.net");
oIE.Navigate2("http://www.google.com", navOpenInBackgroundTab);
oIE.Navigate2("http://www.whatismyip.org", navOpenInBackgroundTab);
oIE.Visible = true;
Save the file as launchie7.js (so change the extension from *.txt to *.js) to your C:\ drive
To launch Internet Explorer with multiple tabs, run the following command from Start - Run:
wscript.exe C:\launchie7.js
Taken from http://www.itexperience.net/2008/09/30/open-multiple-tabs-in-internet-explorer-7/
Saturday, April 25, 2009
Make a bootable USB drive to install Windows 7
Step 1 – Create a bootable USD Drive
- The first thing you need is a USB drive. (Ensure you backup an existing USB drive as you will be wiping the drive.)
- Open a command prompt as administrator.
- Get the drive number by typing:
diskpart
list disk
On my machine the USB disk was number 1. - Format the drive by typing:
select disk 1
clean
create partition primary
select partition 1
active
format fs=NTFS
assign
exit - Mount the Windows 7 iso using Daemon Tools or similar.
- Navigate to the boot directory cd E:\boot
- Using bootsect, make the USB drive a bootable NTFS drive, ready for a Windows 7 image (my drive was labeled G):
bootsect /nt60 G: - We are finished with the command prompt now, so you can close it.
Step 2 – Copy the installation files from the mounted Windows 7 iso to the USB drive. (All files)
Step 3 – Install on the Netbook
- Plug in the USB drive and turn on the netbook
- On start up press
to select the bootable drive (On ASUS Eee PC press Esc at boot up for Boot selection.) - Select the USB drive and press return
- The netbook will boot from the USB drive and the installation will begin
- Install as normal.
Links:
See this blog for additional information on Windows 7 on Asus Eee PC 901.
Monday, March 23, 2009
How do I turn off the autocomplete function in Word 2007
Press Alt+F11 to show the Visual Basic Editor. Press Ctrl+G to activate the
Immediate window. Type
Application.DisplayAutoCompleteTips = False
and press Enter.
Close Visual Basic editor.
Thursday, March 05, 2009
MSTSC /admin
If you use "mstsc /v:servername /console" in a script file then the /console will be ignored (with no warning) and you will be connected to a normal session that is not the server console.
You now use /admin instead of /console.
Detailed discussion on the the change here:
http://blogs.msdn.com/ts/archive/2007/12/17/changes-to-remote-administration-in-windows-server-2008.aspx
Monday, February 02, 2009
Installing Windows 7 via USB or SD Media
- diskpart
- list disk (find the disk number for the removable media)
- select disk #
- clean
- create partition primary
- select partition 1
- active
- format fs=fat32
- assign letter=y (or any free drive letter)
- exit
Once that is complete mount the ISO and run the following command.
xcopy x:\*.* /s/e/f y:\
Where “x” is the drive letter of the mounted ISO. Once complete boot off the device and install the OS. When a new Windows 7 or 2008 R2 build is released, simply delete the contents, rerun the xcopy command and you are ready to go again.
Windows 7 and Asus Eee PC 901
There is a conflict with the Asus BIOS and Windows 7. This occurs because the Operating system does not use the Netbooks screen as the first option during the login phase.
Quick Fix:
When the black screen has been displayed for a short while, lightly press the power button. This puts the Netbook to sleep. Lightly press the power button again wakes the Netbook and displays the login box.
Longer term fix:
Set the User account to auto login (Not recommended for secure systems.) and run a script to display the screen on the monitor.
Auto Login For Window 7 (and Windows Vista)
- Go to start
- Type netplwiz in the search box
- Select the user from which you want to login automatically and uncheck the box “Users must enter a username and password to use this computer”.
- Enter the password of the account in the box.
- Click ok
Setup the display script
- Just open notepad and save this code as a .bat file in the startup folder found in the start-menu:
displayswitch /extend
displayswitch /internal - Start menu location:
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
Thursday, January 22, 2009
How to view and transfer FSMO roles in Windows Server 2003
This article describes how to transfer Flexible Single Master Operations (FSMO) roles (also known as operations master roles) by using the Active Directory snap-in tools in Microsoft Management Console (MMC) in Windows Server 2003.
FSMO Roles
In a forest, there are at least five FSMO roles that are assigned to one or more domain controllers. The five FSMO roles are:
- Schema Master: The schema master domain controller controls all updates and modifications to the schema. To update the schema of a forest, you must have access to the schema master. There can be only one schema master in the whole forest.
- Domain naming master: The domain naming master domain controller controls the addition or removal of domains in the forest. There can be only one domain naming master in the whole forest.
- Infrastructure Master: The infrastructure is responsible for updating references from objects in its domain to objects in other domains. At any one time, there can be only one domain controller acting as the infrastructure master in each domain.
- Relative ID (RID) Master: The RID master is responsible for processing RID pool requests from all domain controllers in a particular domain. At any one time, there can be only one domain controller acting as the RID master in the domain.
- PDC Emulator: The PDC emulator is a domain controller that advertises itself as the primary domain controller (PDC) to workstations, member servers, and domain controllers that are running earlier versions of Windows. For example, if the domain contains computers that are not running Microsoft Windows XP Professional or Microsoft Windows 2000 client software, or if it contains Microsoft Windows NT backup domain controllers, the PDC emulator master acts as a Windows NT PDC. It is also the Domain Master Browser, and it handles password discrepancies. At any one time, there can be only one domain controller acting as the PDC emulator master in each domain in the forest.
You can transfer FSMO roles by using the Ntdsutil.exe command-line utility or by using an MMC snap-in tool. Depending on the FSMO role that you want to transfer, you can use one of the following three MMC snap-in tools:
- Active Directory Schema snap-in
- Active Directory Domains and Trusts snap-in
- Active Directory Users and Computers snap-in
If a computer no longer exists, the role must be seized. To seize a role, use the Ntdsutil.exe utility.
Transfer the Schema Master Role
Use the Active Directory Schema Master snap-in to transfer the schema master role. Before you can use this snap-in, you must register the Schmmgmt.dll file.
Register Schmmgmt.dll
- Click Start, and then click Run.
- Type regsvr32 schmmgmt.dll in the Open box, and then click OK.
- Click OK when you receive the message that the operation succeeded.
Transfer the Schema Master Role
- Click Start, click Run, type mmc in the Open box, and then click OK.
- On the File, menu click Add/Remove Snap-in.
- Click Add.
- Click Active Directory Schema, click Add, click Close, and then click OK.
- In the console tree, right-click Active Directory Schema, and then click Change Domain Controller.
- Click Specify Name, type the name of the domain controller that will be the new role holder, and then click OK.
- In the console tree, right-click Active Directory Schema, and then click Operations Master.
- Click Change.
- Click OK to confirm that you want to transfer the role, and then click Close.
Transfer the Domain Naming Master Role
- Click Start, point to Administrative Tools, and then click Active Directory Domains and Trusts.
- Right-click Active Directory Domains and Trusts, and then click Connect to Domain Controller.
NOTE: You must perform this step if you are not on the domain controller to which you want to transfer the role. You do not have to perform this step if you are already connected to the domain controller whose role you want to transfer. - Do one of the following:
In the Enter the name of another domain controller box, type the name of the domain controller that will be the new role holder, and then click OK.
-or-
In the Or, select an available domain controller list, click the domain controller that will be the new role holder, and then click OK. - In the console tree, right-click Active Directory Domains and Trusts, and then click Operations Master.
- Click Change.
- Click OK to confirm that you want to transfer the role, and then click Close.
Transfer the RID Master, PDC Emulator, and Infrastructure Master Roles
- Click Start, point to Administrative Tools, and then click Active Directory Users and Computers.
- Right-click Active Directory Users and Computers, and then click Connect to Domain Controller.
NOTE: You must perform this step if you are not on the domain controller to which you want to transfer the role. You do not have to perform this step if you are already connected to the domain controller whose role you want to transfer. - Do one of the following:
In the Enter the name of another domain controller box, type the name of the domain controller that will be the new role holder, and then click OK.
-or-
In the Or, select an available domain controller list, click the domain controller that will be the new role holder, and then click OK. - In the console tree, right-click Active Directory Users and Computers, point to All Tasks, and then click Operations Master.
- Click the appropriate tab for the role that you want to transfer (RID, PDC, or Infrastructure), and then click Change.
- Click OK to confirm that you want to transfer the role, and then click Close.
Sunday, January 04, 2009
Installing and Configuring Eeebuntu on to an Asus Eee PC
How to create a bootable USB memory stick with the Operating system ISO file.
Using UNetbootin for Linux or Windows.
http://www.liliputing.com/2008/12/how-to-install-eeebuntu-with-a-usb-flash-drive.html
Partitioning The Disk (preparing disk space screen)
You need to make some decisions here. Some Information about the Asus Eee 901:
/dev/sda is the 4GB onboard SSD
/dev/sdb is the internal removable SSD (8GB windows, 16GB Linux)
/dev/sdc is the SDHC/SD/MMC card if you have one in there
/dev/sdd is your USB Stick (if the SD slot is empty it's /dev/sdc)
I manually partitioned the eee. Here is the partition scheme I used:
/dev/sda1 is the entire 4GB section. I am mounting it as "/" and using ext2
/dev/sdb1 is 15002 MB of sdb. I am mounting it as "/home" and using ext2
/dev/sdb2 is the remaining 1135MB of sdb and is swap space. The swap space is large to allow for hibernation.
You can use ext2 to to lessen the number of writes to the SSD. Of course using a journaled files system is generally better
Switching between Ubuntu Netbook remix and the standard desktop
- Right click on the Ubuntu circular icon in the top right, and click Edit Menus.
- In the Menu section select Preferences under the System menu.
- In the Items section scroll down and tick the Sessions option.
- Then click Close.
- Expand the System menu optin then Preferences and select Session.
- In Startup Programs
- Look for NETBOOK LAUNCHER, untick it then click close
- Reboot your machine and you'll get a standard Desktop.
Tuesday, December 16, 2008
Converting Video
- Load your video file.
- Under Video choose the video codec, for avi choose xvid and if making mp4 or mkv choose x264
- Under Video->Configure and under Encoding type change to Two Pass Video Size if you want to change the output file size.

- Under Video->Filters->Subtitle add the subtitle filter and load your srt,sub,ass file. (extract subtitles from mkv files using mkvextracgui or ogmdemuxer)
- You might have to downresize the video resolution/frame size, for DVD Divx Player use a resolution under 720x576, for portable devices use the max resolution that it supports, for PS3, Xbox 360 yoú can keep HD resolution(1920x1080 or lower). Under Filters add the Resize filter and resize.
- Under audio choose mp3 for DVD Divx Player playback, aac audio for mp4.
- Set the output format, avi or mp4
- Click Save to start the encoding, save the video with the file extension like video.avi or video.mp4
Monday, November 17, 2008
Media State: Authentication failed
In Microsoft Windows Vista, a user reported an error on the network card.
If the domain network is not using a radius connection you may need change the Authentication settings of the network card.
In the properties of the network card click on the Authentication tab and unselect Enable IEEE 802.1x authentication.
Thursday, October 23, 2008
How to Create a Custom Windows Installation DVD - for UMPC
Guide for Vlite
http://forum.notebookreview.com/showthread.php?t=271701
Full instructions are available from:
http://www.simplehelp.net/2008/06/04/how-to-create-a-custom-windows-vista-installation-dvd/
Vlite is available from:
http://www.vlite.net/
Thursday, October 02, 2008
Wireless Vista machines connecting to a Domain
The Radius server and workstations require a server certificate, this can be generated by using the SelfSSL obtained from the IIS Resource kit.
How To Install:
- Download IIS 6.0 Resource Kit Tools (requires Windows Server 2003, Windows XP)
- Install the resource kit (If you want hand-holding through these steps, read these instructions with screenshots by Jonathan Maltz)
- From the Windows Start Menu, go to the "\Programs\IIS Resources\SelfSSL" folder and select "SelfSSL".
- Instructions will be listed in a command prompt. Type "selfssl" to run the program.
- Type "y" to confirm overriding/installing the certificate on the given site.
- Test that it worked by visiting https://localhost/.
Additional instructions are available from the following blog.
We are going to manage the wireless connection at the workstations via Microsoft Group Policies.
"Wireless and wired clients running Microsoft® Windows Vista™ or Windows Server 2008 and wired clients running Windows XP with Service Pack 3 support enhancements that can be configured through Group Policy settings that are supported by domain controllers running Windows Server® 2008. To support these enhancements for an Active Directory® directory service environment consisting of domain controllers running Windows Server 2003 or Windows Server 2003 R2, the Active Directory schema must be extended."
Use the following guide to extend the schema:
Active Directory Schema Extensions for Windows Vista Wireless and Wired Group Policy
Edit the Group Policy using Group Policy Management Console.
- Create a Group Policy Object for the computers you want to configure wireless access. (i.e. called Wireless workstation settings)
- Edit the Group Policy Object.
- Expand Computer Configuration, Policies, Windows Settings, Security Settings.
- Select Wireless Network (IEEE 802.11) Policies.
- Click the right hand mouse button, in the right hand window and select Create a new Wireless Policy.
- Enter an appropriate name and description, tick the Use Windows WLAN AutoConfig service for clients.
- Click Add, then select Infrastructure.
- In the Profile name enter an approprate name and the correct SSID
Tick - Connect automatically when this network is in range.
and tick - Connect even if the network is not broadcasting. - Click the Security tab
In Authentication select WPA-Enterprise
Encryption select - TKIP
In Select a network authentication method: select Microsoft: Protected EAP (PEAP)
Click on Properties:
Tick on Validate server certificate
In Trusted Root Certification Authorities - select your certificate. (Ensure it has been installed.)
In Select Authentication Method: select Secured password (EAP-MSCHAP v2)
Click Configure - In When connecting ensure Automatically use my Windows logon... is selected. - Click Ok, click OK on Protected EAP Properties.
In Authentication Mode: select User re-authentication
Max Authentication Failures: is set to 3.
Tick Cache user information.
Click Advanced.
Ensure Enforce advanced 802.1x settings is not selected.
Tick enable Single Sign on
Select Perform immediatly before User Logon
Max delay for connectivity set to 30
Tick Allow additional dialogs to be displayed. Click Ok, click Ok to close Wireless network properties. - In the Network Permissions tab
- Ensure the correct Network Name and network type is set with the permission set to Allow.
- Tick the following - Allow user to view denied networks and Allow everyone to create all user profiles. - then click Ok.
- Add the Group Policy object to the appropriate workstations.
On the workstation you need to install the certificate into the Trusted Root Certificate Authority.
On the workstation load the MMC and load Certificates and install the manually created certificate.
Links:
The Cable Guy - Wireless Group Policy Settings for Windows Vista
Tuesday, September 30, 2008
Acer Aspire One - Linux - installing VLC
The built in media player has a limited set of CODECs and so can not play all the available video formats (i.e. Divx & Xvid video formats). You can install the VLC video player which will play a large selection of different types of video files.
Firstly, we need to open up the interface to allow extra software to be added.
- Go to the green Files pane at the bottom right of the screen and left-click on My Documents.
- Now left-click on File & Terminal – you'll see a text window open with a $ prompt.
- Type in xfce-setting-show and press Enter – up pops the Xfce Desktop Manager.
- Left-click on Desktop, then select the Behaviour tab. Now tick Show Desktop Menu on Right Click.
- Type Exit to close a Terminal screen.
Now, if you close all those open windows & get back to the standard Aspire One desktop, you'll find that, if you now do a right-click, you'll get a Menu appear!
Installing the VLC video player.
- Right-Click on the Desktop and select Terminal and type in the following lines at the $ prompt.
nu -
(Your appropriate password)
sudo yum install fedora-release
sudo rpm -ivh http://rpm.livna.org/livna-release-8.rpm
sudo yum install vlc python-vlc mozilla-vlc - When prompted answer Y & Enter, when complete close all open windows.
- Right Click anywhere on the Desktop and go to MultiMedia -> VLC Media Player. (You might need to restart your Netbook.
Adding Icons to the Aspire One
It's all very well having the Advanced Menu, but for some apps you'd also like the fast access provided by the desktop. Here's how you make them appear. Press Alt-F2, type in xterm to open the command line (Terminal) window - and click on Run...
At the command line, type:
sudo mousepad /home/user/.config/xfce4/desktop/group-app.xml and hit Enter. This calls up the desktop's configuration file. Scroll through and you'll see how the entries are arranged.
Add to the Fun desktop section (Possibly
Remembering to select a unique sequence number the number describes the order of the applications.
Save the file then restart your Acer Aspire. Click on the right-arrow button in the Fun section, and you should see a new VLC icon. Drag and drop it higher in the list if you prefer.
Links:
http://www.aspireoneuser.com/
Ten tweaks for a new Acer Aspire One.
Thursday, August 14, 2008
Check the Capabilities of your Processor
SecurAble probes the system's processor to determine the presence, absence and operational status of three modern processor features: .
- 64-bit instruction extensions.
- Hardware support for detecting and preventingthe execution of code in program data areas.
- Hardware support for system resource “virtualization.”
Thursday, May 15, 2008
Network adapter priority in Vista
If you have multiple network cards in your Vista machine it is recommended to configure the wired domain network card as the first in the list.
On the Advanced menu, on Advanced settings, you can change the order which Vista uses different adapters.
To access the Advanced Settings, go to the Network and Sharing center, click Manage Network Connections - 5th down under task on the on the left then press ALT to make the menu appear.
Information and link to: http://blogs.technet.com/jamesone/archive/2007/04/03/network-adapter-priority-in-vista.aspx
