Download the latest Windows Defender Definition Updates.
This package will help you install the latest Windows Defender definition updates.
If you encounter problems while trying to install definition updates for Windows Defender, you can download the latest definition update for computers running a 32-bit (x86-based) or 64-bit version of Windows
Download: File Size: 10.8 MB OS Support: Windows (all) License: Freeware
License: Free Requirements: Windows 2000/XP/2003 Server/Vista Limitations: No limitations. Publisher's description of Desktop iCalendar Lite Desktop iCalendar Lite is a free desktop calendar for windows. It allows you to manage your events, to-do list on desktop. It allows subscribing public Google Calendar, such as holidays, election or NBA. It is full customizable. A build in skin editor makes it easy to set the skin by your own taste. Desktop iCalendar is full compatible with iCalendar standard, and can work with the calendars created by Thunderbird Lightning, Sunbird. Download:
License model : Free Limitations : Not available Operating systems : Windows Vista, Windows Me, Windows XP, Windows 2000, Windows NT, Windows 98 Additional requirements : Not available Publisher's description The first thing users of this freeware WordPad/Notepad replacement will notice is the unusual interface. Jarte actually uses a simple layout, with a default brushed-metal skin and mouse-over icons that reveal standard Menu bar drop-down menus, but this isn't your basic 1990s UI. Just the mere fact of having something different to look at is appealing, and generally it works well. The icons are a bit small, and there's a fair bit of empty space around them so they look somewhat bereft of context.
It turns out Jarte has two other interface schemes. One is an expanded "classic" layout, while the other is a minimalist and familiar Menubar. Behind these different approaches lies many familiar writing and note-taking tools bolstered by small tweaks that make Jarte's appeal obvious. A mouse-over chart icon gives you word, character, page, and line counts. Table, special character, and equation support make Jarte a good, lightweight editor, but the built-in scalable screen-capping utility push it towards greatness. The included spell-checker was adequate, but not great, although the clipboard can hold 25 items at once. DOC, RTF and TXT formats are supported, and there's an Export tool that converts documents into PDFs and HTML. Like other Notepad replacements, Jarte offers tabs for keeping multiple files open at once.
The stability issues and function failures of previous versions were non-existent in our latest test of Jarte. The clickless, mouse-over-based navigation may sound a bit intimidating, but it makes getting around in the app noticeably fast. If you're in the market for a Notepad or WordPad alternative, Jarte's mix of style and utility is about as different from the mainstream as you can get.
A simple script for automatic System State backup where you can easily set backup retention period and it also send you an e-mail notification after completion. With this script you can also archive backup log and if you wish u can also set backup log retention period. It can also set backup files with date stamp. For e.g., SysBackup_ComputerName_24-03-2009.bkf
You need two small utility,
Blat.exe for sending mail, you can get details from here.
Forfiles.exe for checking old files, you can get details from here.
Just download following zip file and extract its content to %windir%\ or%windir%\system32 folder.
::Backup Settings START ::Set Backup Path ::~~~~~~~~~~~~~~~~~~~~ set savepath=D:\TestBackup ::Set Backup Name ::~~~~~~~~~~~~~~~~~~~~ set backupname=SysBackup ::Set Backup Retention Period(in days) ::~~~~~~~~~~~~~~~~~~~~ set retention=3 ::Set Log Archive Path(Only Folder Name) ::~~~~~~~~~~~~~~~~~~~~ set logarchivepath=BackupLog ::If ‘yes’ then backup log retention will enabled ::~~~~~~~~~~~~~~~~~~~~ set logretention=yes ::If avove settings is “yes” then set log Retention Period(in days) ::~~~~~~~~~~~~~~~~~~~~ set logretentionperiod=3 ::———-x——— ::E-Mail Settings (SMTP without authentication will work) ::———-x——— ::If ‘yes’ a mail will be fired after backup ::~~~~~~~~~~~~~~~~~~~~ set _mailnotification=yes ::If ‘yes’ backup log will attached with mail ::~~~~~~~~~~~~~~~~~~~~ set attachment=no ::Type your e-mail address(for multiple e-mail ID, use ‘,’) ::~~~~~~~~~~~~~~~~~~~~ set email=urname@domain.com :: Type from mail ID ::~~~~~~~~~~~~~~~~~~~~ set from=%computername%@TC-Auto-NTBackUP ::Set SMTP Server IP Address ::~~~~~~~~~~~~~~~~~~~~ set mserver=10.0.0.1 ::Backup Settings END
@echo offcolor 0cMODE CON: COLS=50 LINES=11echo ***************************************echo Auto SystemState Backup with Retentionecho Log Archive and Mail Notificationecho Code By: Saugata Dattaecho ~~~echo (c)http://technochat.inecho Date: %DATE%, Time: %TIME%echo ***************************************::Backup Settings START::Set Backup Path::~~~~~~~~~~~~~~~~~~~~set savepath=D:\TestBackup::Set Backup Name::~~~~~~~~~~~~~~~~~~~~set backupname=SysBackup::Set Backup Retention Period(in days)::~~~~~~~~~~~~~~~~~~~~set retention=3::Set Log Archive Path(Only Folder Name)::~~~~~~~~~~~~~~~~~~~~set logarchivepath=BackupLog::If 'yes' then backup log retention will enabled::~~~~~~~~~~~~~~~~~~~~set logretention=yes::If avove settings is "yes" then set log Retention Period(in days)::~~~~~~~~~~~~~~~~~~~~set logretentionperiod=3::----------x---------::E-Mail Settings (SMTP without authentication will work)::----------x---------::If 'yes' a mail will be fired after backup::~~~~~~~~~~~~~~~~~~~~set _mailnotification=yes::If 'yes' backup log will attached with mail::~~~~~~~~~~~~~~~~~~~~set attachment=no::Type your e-mail address(for multiple e-mail ID, use ',')::~~~~~~~~~~~~~~~~~~~~set email=vdco.kolkata@familycreditindia.com:: Type from mail ID::~~~~~~~~~~~~~~~~~~~~set from=%computername%@FC-Auto-NTBackUP::Set SMTP Server IP Address::~~~~~~~~~~~~~~~~~~~~set mserver=172.16.10.7::Backup Settings END::--------------------------------::Don't change following lines.::--------------------------------forfiles -p "%savepath%"/m *.bkf /s /d -%retention%/c "cmd /C del @FILE":: get the date and time and then into single variablefor/F "tokens=1-4 delims=/ "%%i in('date /t') do (set MM=%%jset DD=%%kset YYYY=%%lset date=%%k-%%j-%%lset dirdate=%%j%%k%%l)for/f "Tokens=1-2 delims=/ "%%i in('time /t') do (set tm=%%iset ampm=%%j)::Deleting Old Backup Log filesif not exist "%HOMEPATH%\Local Settings\Application Data\Microsoft\Windows NT\NTbackup\Data\*.log"goto _nodeldel "%HOMEPATH%\Local Settings\Application Data\Microsoft\Windows NT\NTbackup\Data\*.log">nul:_nodelntbackup.exe backup systemstate /v:no /r:no /rs:no /hc:off /J %backupname% /l:s /f "%savepath%\%backupname%_%computername%_%date%.bkf"if not exist "%savepath%\%logarchivepath%" md "%savepath%\%logarchivepath%">nulmove "%HOMEPATH%\Local Settings\Application Data\Microsoft\Windows NT\NTbackup\Data\*.log"%savepath%\%logarchivepath%\%backupname%_%computername%_%date%.txt >nulif not "%_mailnotification%" == "yes"goto _endif not "%attachment%" == "yes"goto _noattachblat "%savepath%\%logarchivepath%\%backupname%_%computername%_%date%.txt"-attach "%savepath%\%logarchivepath%\%backupname%_%computername%_%date%.txt"-to%email%-s "NT Backup Success/Failure Report of %computername%"-f "%from%"-server"%mserver%"> nulgoto _skip:_noattachblat "%savepath%\%logarchivepath%\%backupname%_%computername%_%date%.txt"-to%email%-s "NT Backup Success/Failure Report of %computername%"-f "%from%"-server"%mserver%"> nul:_skipif not "%logretention%" == "yes"goto _endforfiles -p "%savepath%\%logarchivepath%"/m *.txt /s /d -%logretentionperiod%/c "cmd /C del @FILE":_endexit
Now you have to create a schedule for daily backup.
Few simple steps to configure Outlook (2000/2003/2007) with MS Exchange on first logon: It’s really not so difficult to configure outlook on first logon, you just need aPRF(Microsoft Outlook profile file) file. To create PRF file you need to download Office 2003 Editions Resource Kit Tools from following location. Download
And you need Office Source Setup files.
After install open Microsoft Office 2003 Custom Installation Wizard, and select office source, on step4 select step17 like following window.
Now Select New Profile, and set a name for the default profile.
On user name field use %username%, and add your exchange server details (for e.g. MBX001.technochat.in), enable cache mode if you want to.
On next screen export PRF file.
Save PRF file on any network location from where other can access (Recommended on netlogon folder).
Now add following lines on your logon script, it will automatically detect your MS Outlook (2000/2003/2007) installation path, then run and configure your outlook on user first logon. If destination systems don’t have Outlook installed, it will automatically skip configuration part.
Disable USB Pendrive/HDD in ur Computer for security, it’s more effective if you have cybercafe, u can easily able to block USB access, and prevent file copy, and protect your computer from virus.
Actually one of my friend have a cybercafe, he request me to make something which can disable USB Pen drive access from all of his client PC, so, i did make this.. Hope this might helpful to you all..
IT professionals are unique, like snowflakes. Degrees, training, intelligence, creativity, and experience all matter, but they combine to craft distinctly specific skill sets. Perhaps that's one reason there are so many utilities and tools driving the support industry. In fact, there are so many that shopping for just the right tool can be overwhelming. So I asked several IT pros to list the tools they depend on -- and I received some surprising results. Their lists are (almost) as unique as they are. Try matching the following IT pros to your job role and skills. Perhaps their lists will help you narrow your search for useful tools and utilities. The good news for all of us is that most of these tools are freeware.
Note: Comments in quotes belong to the IT professional.
John Bartow, consultant
John Bartow's areas of expertise are network and PC security, which he provides via his consulting firm, WinHaven Computer Consulting Services . Because he's onsite so much, he carries the following tools with him at all times:
Camden Software Consulting, in Bainbridge Island, WA, specializes in migrating existing applications to new technologies. (Its owner, Sterling Camden, also hosts TechRepublic'sIT Consultantblog.) Vim and Ruby products are his favorite tools, but Camden relies on several others, which he keeps on a laptop that goes everywhere he goes:
Google Chrome : Windows browser that's getting a lot of good reviews.
Ruby : "One of the most popular scripting languages."
Synergy/DE : Suite of advanced cross-platform software tools for Windows, UNIX, and OpenVMS. (Camden consults for Synergex, the vendor.)PVCS Configuration Builder: Automates and a
John W. Colby specializes in business analysis, database design, and programming. He is a past president and a current board member of Database Advisors, Inc ., an online technical support group. Currently living in North Carolina, Colby uses various remote access tools to provide consulting services to clients around the country:
C2DbFW3G: Custom framework for Access.
MZ-Tools : Enhanced programming tools for VB and VBA programmers.
Irfanview : Fast graphic viewer/conversion tool for Windows.
eCleaner : Strips HTML symbols, formatting codes, and so on.
CoreFTP : Free, user-friendly, secure FTP application for Windows.
SiSoft Sandra : Gathers information about a machine.
Lan MonitorSendToAny : Displays information about every network adapter on your computer. : Extends the Windows Send To menu to include anything on your Program
Deborah Elam, consultant Specializing in SQL and VB.NET applicatio
DNS source script : Creates DSNs from code. "…moving computers and new users requires mu
maintenance."
Steve Erbach, software development
Steve Erbach supplies custom software for the printing ind
NetSetManPro : Network settings manager. "I can go to any of my clients' sites and hook my laptop into their network
Kren Rosenstiel, Web dev
en osenstiel designs and develops Web sites for small businesses and nonprofit organizations, with an e in accessibility features.Her list is short, but specif
UltraEdit: "…an excellent all-around program
UltraCompare : Compare and merge files, directors, documents, zip archives, and so on.
Francisco Tapia, database administrator
ncio Tapia maintains and monitors 26 SQL Server systems in a manufactu
gine, performance is a huge issue for Tapia, who likes to develop his own monitoring applis surity policies for system applications and products (SAP) systems. Tapia also markets a c
product that monitors SQL Server systems. Tapia is a magician wRed-Gate products:
: an Waters, business systems business process management systems (BPM
' company, ProMation Systems, Inc., develops paies that want to be more competitive and effect
MZ-Tools: Enhanced programming tools
Find & ReplaceAccess Analyzer : Add-in for Microsoft Access that lets you quickly rename design objects.: Provides extensive documentation and analysis of Microsoft Access databases.
errors.
rew Wutka, network administrator
w Wutka is a network systems administrator with database and programming skills. Currently, he provide
efense, space, photonics, telecommunications, and medical industries. When he can't find just the right , Wtka sometimes writes his own (such as MoveWindows, in his list below). Here are some of his favorites:
Remote Administrator (radmin): "Great tool for ad
MoveWindows : Custom application that captures all of the open windows on your machine. "Handy for multiple monitor issues when an application gets lost."