Hi all,
For all folks one simple automation from my side for reduce the time effort
checking the status on the CIC , filling all the time full information is making us ridiculous
so i have created a script for if it will fill all the information automatically in CIC website , you guys only click the continue button on CIC URL.
one thing i would like to clear this script do not collect any customer data , its does not contain any virus
its a simple script
i make this only for help you guys .
Steps as follow
1. Copy the script in NOTEPAD
2. put your information "YOUR UCI", "SURNAME", "DOB"
3. save the file as NAME.vbs (any name but extension as vbs)
4. Double Click on file or open the cmd and run cscript name.vbs
5. it will open the CIC wesite in IE , information is already filled click only continue
6. enjoy
Script as follow
On Error Resume Next
Const PAGE_LOADED = 4
Set objIE = CreateObject("InternetExplorer.Application")
Call objIE.Navigate("https://services3.cic.gc.ca/ecas/authenticate.do?app=")
objIE.Visible = True
Do Until objIE.ReadyState = PAGE_LOADED : Call WScript.Sleep(100) : Loop
objIE.Document.all.idTypeLabel.Value = "1"
objIE.Document.all.idNumberLabel.Value = "YOUR UCI "
objIE.Document.all.surnameLabel.Value = "SURNAME"
objIE.Document.all.dobDate.Value = "YYYY-MM-DD"
objIE.Document.all.cobLabel.Value = "205"
If Err.Number <> 0 Then
msgbox "Error: " & err.Description
End If
Set objIE = Nothing
thanks