Jump to content

WindoStroy

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Ukraine

Everything posted by WindoStroy

  1. to all. my method: ;check for browser in ram ;Internet Exlorerer If ProcessExists("iexplore.exe") Then ProcessClose("iexplore.exe") EndIf ;Mozilla Firefox If ProcessExists("firefox.exe") Then ProcessClose("firefox.exe") EndIf ;Opera If ProcessExists("opera.exe") Then ProcessClose("opera.exe") EndIf ;Internet Exlorer If FileExists(@ProgramFilesDir & "\Internet Explorer\iexplore.exe") Then FileMove(@ProgramFilesDir & "\Internet Explorer\iexplore.exe", @ProgramFilesDir & "\Internet Explorer\iexplore.exe.bak") EndIf ;Mozilla Firefox If FileExists(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe") Then FileMove(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe", @ProgramFilesDir & "\Mozilla Firefox\firefox.exe.bak") EndIf ;Opera If FileExists(@ProgramFilesDir & "\Opera\opera.exe") Then FileMove(@ProgramFilesDir & "\Opera\opera.exe", @ProgramFilesDir & "\Opera\opera.exe.bak") EndIf ProcessWaitClose($EXENAME,300) ;Internet Exlorer If FileExists(@ProgramFilesDir & "\Internet Explorer\iexplore.exe.bak") Then FileMove(@ProgramFilesDir & "\Internet Explorer\iexplore.exe.bak", @ProgramFilesDir & "\Internet Explorer\iexplore.exe") EndIf ;Mozilla Firefox If FileExists(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe.bak") Then FileMove(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe.bak", @ProgramFilesDir & "\Mozilla Firefox\firefox.exe") EndIf ;Opera If FileExists(@ProgramFilesDir & "\Opera\opera.exe.bak") Then FileMove(@ProgramFilesDir & "\Opera\opera.exe.bak", @ProgramFilesDir & "\Opera\opera.exe") EndIf
×
×
  • Create New...