How to remove AVG 8.0 Link Scanner

Create a shortcut of the installation file. Then edit the shortcut to run with the parameter below:


# Run the installation with the parameters :

/REMOVE_FEATURE fea_AVG_SafeSurf /REMOVE_FEATURE fea_AVG_SafeSearch



> AVG 8.0 Free SCREENSHOT BEFORE LinkScanner removed:

How to 'Disable-Remove-Uninstall-Forever' LinkScanner then reinstall AVG 8.0 Free without LinkScanner! 1

> AVG 8.0 Free SCREENSHOT Without LinkScanner:

How to 'Disable-Remove-Uninstall-Forever' LinkScanner then reinstall AVG 8.0 Free without LinkScanner! 2


Foxit Reader 2.3: How to Disable Ads

Here's how you can disable to ads in Foxit Reader.

Article Source Link

"

By default, the free version of Foxit Reader has six ads. In earlier versions of Foxit, you could disable the ads simply by clicking on each one. This practice no longer works but you can prevent them from appearing again by creating and executing a simple reg file.

1. Open Notepad.

2. Copy and paste the following into the new text document:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Foxit Software\Foxit Reader\MainFrame]

"ShowEditorAd_908"="0"
"ShowReaderAd_908"="0"
"ShowTypewriterAd_908"="0"
"ShowPOAd_908"="0"
"ShowSDKAd_908"="0"
"ShowFFAd_908"="0"



3. Save the document as foxit_noads.reg.

4. Merge the new file into the registry by doubler-clicking it.

5. If you're using Windows Vista, continue through the UAC prompt and confirm that you wish to perform the action.

"

Check MS Outlook Empty Subject

Do you constantly send email without a subject using Outlook?

Here's the solution.

Article Source Link
"

To create the macro in Outlook 2003, go to Tools -> Macro -> Visual Basic Editor (this feature has to be installed). In Microsoft Office Outlook Objects -> ThisOutlookSession, paste the following code:


Private Sub Application_ItemSend _
(ByVal Item As Object, Cancel As Boolean)
Dim strMessage As String
Dim lngRes As Long
If Item.Subject = "" Then
Cancel = True
strMessage = "Please fill in the subject before sending."
MsgBox strMessage, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub


Go to Tools -> Trust Center -> Macro Security
and select "No security check for macros."
Note you know what types of macro are running.

"

Remove PDF Document Restrictions

This wonderful free software or freeware unlocks your lock PDF. Isn't this great? :)


Article Link

"PDF Documents can be protected by the creator by disabling specific functions in the PDF reader. Some options are for example to prevent printing, copying or editing of documents. One way around those restrictions would be to make simple screenshots and print those screenshots if printing would be disabled. This however is not the best way and there is actually a solution that can remove PDF document restrictions easily.

PDF Unlocker (via Techtrends) is a free software that can unlock PDF Document restrictions. This is done by moving the pdf document on the shortcut of PDF Unlocker which will remove the restrictions automatically and create a new pdf document without the restrictions.

This pdf document can be printed, edited and copied. PDF Unlocker has a second function. PDF Documents can be password protected to prevent unauthorized access to them. The software provides a way to unlock the pdf document if the user can provide the password that protects it."

Automated FTP batch file for ftp scripting

This article inspire me on the 'temp ftp script file' concept.
Batch files - Unattended FTP downloads

This batch file will create a temp ftp script file where it would read the contents and execute the commands.

After the end of the command, it will empty the script file and delete it.

"
@ECHO OFF
::Location where the temporary script file will be created
CD \
CD Temp
:: Create the temporary script file
> script.ftp ECHO username
>>script.ftp ECHO password
>>script.ftp ECHO prompt off
>>script.ftp ECHO put C:\ftp.txt
>>script.ftp ECHO quit

:: Use the temporary script for unattended FTP
FTP -s:c:\temp\script.ftp ftp.host.com
:: Overwrite the temporary file before deleting it
TYPE NUL >script.ftp
DEL script.ftp
GOTO End

:End
"