Windows XP secrets – How to find hidden Brian Eno Ambient MIX !

Posted by aidas | Posted in Uncategorized | Posted on 22-07-2009

0

Hi there!

Check this nice hidden Brian Eno Ambient mix in your Windows XP machine ! :)

To access it Press Start > Run and type:

C:\WINDOWS\system32\oobe\images\title.wma

hidden

Press “OK” and Enjoy ! :)

Windows Vista – How To Disable Delete confirmation dialog

Posted by Erica | Posted in Uncategorized | Posted on 22-07-2009

0

In this post i`ll show how to disable delete confirmation dialog in your Windows Vista machine.

By default if we try to delete file we get following message:

vista1

To disable it right click on your “Recycle Bin” and select “Properties”.

Now all you have to do is to uncheck “Display delete confirmation dialog” box.

vista2

Press “Apply” and you are done ! :)

Windows server 2003 and Windows XP – How to script file download from FTP server

Posted by Mark | Posted in Uncategorized | Posted on 22-07-2009

1

Do you know how to script basicĀ  FTP server connect/copy operations?

I`ll show you that.

Lets assume you want every Friday at 06:00pm to connect to specific FTP server and download all files from it to directory named D:\Scanfiles.

On your Windows server 2003 or Windows XP start notepad and type:

@echo off
echo user username> ftpbat.dat
echo password>> ftpbat.dat
echo prompt>> ftpbat.dat
echo mget *.*>> ftpbat.dat
echo quit>> ftpbat.dat
ftp -n -s:ftpbat.dat FTPserverIP
del ftpbat.dat

notepad

Save file as ftp.bat and place it in D:\Scanfiles folder.

Change this data:

username – your ftp username
password – your ftp password
FTPserverIP – ip address of ftp server to connect

After that create new scheduled task to run ftp.bat file every Friday at 06:00pm .

Cheers! :)