home *** CD-ROM | disk | FTP | other *** search
Wrap
DialogLoggingOff 'Init Setup, please wait ...' deutsch = 1 english = 2 tMeldung[deutsch][1] = 'Hardcopy Installation' tMeldung[english][1] = 'Hardcopy installation' tMeldung[deutsch][2] = 'Es wird jetzt das Programm Hardcopy installiert.\r\n\r\nDas Programm Hardcopy erm÷glicht es Ihnen ⁿber einen Tastendruck, ([Druck]-Taste) den Bildschirminhalt auszudrucken oder auch abzuspeichern.' tMeldung[english][2] = 'Setup is ready to install Hardcopy.\r\n\r\nHardcopy is a utility that is used to print out your screen or window.\r\n\r\nKey [Print] - prints out the current screen.\r\nKey [Alt+Print] - prints out current window.' tMeldung[deutsch][3] = 'Bitte geben Sie hier das Verzeichnis an, in welchem Sie das Hardcopy-Programm installieren wollen,\r\noder verwenden Sie "Auswahl...", um ein anderes Verzeichnis auszuwΣhlen.' tMeldung[english][3] = '\r\n\r\nPlease type the directory for install the the Hardcopy program\r\nor use the "Browse..." for select a directory.' tMeldung[deutsch][4] = 'Bitte geben Sie hier die Programmgruppe an, in welchem Sie das Hardcopy-Programm eintragen wollen,\r\noder verwenden Sie "Auswahl...", um ein andere Gruppe auszuwΣhlen.' tMeldung[english][4] = '\r\n\r\nPlease type the program group for Hardcopy\r\nor use the "Browse..." for select a program group.' tMeldung[deutsch][5] = 'Hardcopy - Bildschirmausdruck' tMeldung[english][5] = 'Hardcopy - Print Screen' tMeldung[deutsch][6] = 'Das Verzeichnis kann nicht angelegt werden !' tMeldung[english][6] = 'Unable to create the directory !' If __WinVersion__ >= 4 i = StrrChr __AutostartVerzeichnis__ '\\' vTemp = Mid __AutostartVerzeichnis__ ( i + 1 ) 255 Else vTemp = 'Autostart' EndIf tMeldung[deutsch][7] = 'Hardcopy in die Gruppe %vTemp% eintragen.' tMeldung[english][7] = 'Create a Icon for Hardcopy in the %vTemp% group.' tMeldung[deutsch][8] = 'Hardcopy nach dem Beenden der Installation starten.' tMeldung[english][8] = 'Start Hardcopy at the end from the installation.' tMeldung[deutsch][9] = 'Die Installation ist Ok, Sie k÷nnen nun das Programm Hardcopy starten.' tMeldung[english][9] = 'Setup is complete. You may run the Hardcopy program.' tMeldung[deutsch][10] = 'Die Installation ist Ok, Hardcopy wurde gestartet.' tMeldung[english][10] = 'Setup is complete. Hardcopy has been startet.' tMeldung[deutsch][11] = 'Bitte Verzeichnis auswΣhlen' tMeldung[english][11] = 'Please select a directory' tMeldung[deutsch][12] = 'Bitte eine Programmgruppe auswΣhlen' tMeldung[english][12] = 'Please select a Program Group' tMeldung[deutsch][13] = 'Programm-Icon/Gruppe kann nicht angelegt werden' tMeldung[english][13] = 'Error, can not create program-icon/group' If __Language__ == 'deu' sprache = deutsch Else sprache = english EndIf vAutostart = 0 // Hardcopy in die Autostartgruppe eintragen vExec = 0 // Hardcopy nach beenden der Installation starten vAutostart = 1 // Hardcopy in Autostart eintragen vExec = 1 // Hardcopy nach der Installation ausfⁿhren vInstallDirVon = pwd vClient = ' ' vClient = GetIniFile '%vInstallDirVon%\\setup.ini' 'Client' 'ClientInstallation' vClientG = ' ' vClientG = GetIniFile '%vInstallDirVon%\\setup.ini' 'Client' 'ClientGroup' vTitle = tMeldung[sprache][1] vIni = ' ' vIni = GetIniFile '%vInstallDirVon%\\setup.ini' 'Verwendung' 'Cr2' If vIni > ' ' vTitle = '%vTitle%\r\n %vIni%' EndIf CreateBackground vTitle vLogFileName = '%__WindowsVerzeichnis__%\\Hardcopy.log' fp = fopen vLogFileName 'w' If __error__ == 0 MessageBox 'Logdatei ''%vLogFileName%'' kann nicht ge÷ffnet werden' Exit EndIf Fehler = 0 fputs fp '\nInstallation Hardcopy\n\n' fputs fp ' Datum/Uhrzeit: \t%__Date__%\n' fputs fp ' Language: \t%__Language__%\n' fputs fp ' WinVersion: \t%__WinVersion__%\n' fputs fp ' WinMinor: \t%__WinMinor__%\n' fputs fp ' WinSystem: \t%__WinSystem__%\n' fputs fp ' CpuModel: \t%__CpuModel__%\n' fputs fp ' BsBuild: \t%__BsBuild__%\n' fputs fp ' CpuType: \t%__CpuType__%\n' fputs fp ' WindowsVerzeichnis: \t%__WindowsVerzeichnis__%\n' fputs fp 'WindowsSystemVerzeichnis: \t%__WindowsSystemVerzeichnis__%\n' fputs fp ' Desktop: \t%__DesktopVerzeichnis__%\n' fputs fp ' Startmenⁿ: \t%__StartVerzeichnis__%\n' fputs fp ' Programme: \t%__ProgrammVerzeichnis__%\n' fputs fp ' Autostart: \t%__AutostartVerzeichnis__%\n' fputs fp '\n' If vClient == 'yes' fputs fp ' Client-Installation\n' Else fputs fp ' Standard-Installation\n' EndIf cd 'c:\\' vDir = 'c:\\hardcopy' If vClient == 'yes' If __System32__ == 1 vDir = '%vInstallDirVon%\\bin32' Else vDir = '%vInstallDirVon%\\bin16' EndIf EndIf vPrgGrp = tMeldung[sprache][5] If __WinVersion__ >= 4 WizardCreate __WizardTitle__ = tMeldung[sprache][1] :page1 rc = WizardPageText __WizardNext__ tMeldung[sprache][2] if rc == __WizardCancel__ fputs fp 'Der Benutzer hat die Installation abgebrochen !\n' exit EndIf :page2 If vClient != 'yes' __WizardBitmap__ = '%vInstallDirVon%\\Hardcpy1.bmp' rc = WizardPageBrowse (__WizardBack__ + __WizardNext__) DIR tMeldung[sprache][3] vDir if rc == __WizardBack__ Goto :page1 EndIf if rc == __WizardCancel__ fputs fp 'Der Benutzer hat die Installation abgebrochen !\n' exit EndIf mkdir vDir If __error__ == 0 fputs fp '%tMeldung[sprache][6]%\n' MessageBox tMeldung[sprache][6] GoTo :page2 EndIf rmdir vDir EndIf :page3 If vClientG == ' ' __WizardBitmap__ = '%vInstallDirVon%\\Hardcpy2.bmp' rc = WizardPageBrowse (__WizardBack__ + __WizardFinish__) GROUP tMeldung[sprache][4] vPrgGrp CHECK vAutostart tMeldung[sprache][7] vExec tMeldung[sprache][8] if rc == __WizardBack__ Goto :page2 EndIf if rc == __WizardCancel__ fputs fp 'Der Benutzer hat die Installation abgebrochen !\n' exit EndIf Else vPrgGrp = vClientG EndIf WizardClose mkdir vDir Else // ------------ Verzeichnis :NeuerVersuch If vClient != 'yes' cd 'c:\\' vDir = SelectDir vDir tMeldung[sprache][11] If __error__ == 0 fputs fp 'Der Benutzer hat die Installation abgebrochen !\n' Exit EndIf mkdir vDir If __error__ == 0 fputs fp '%tMeldung[sprache][6]%\n' MessageBox tMeldung[sprache][6] GoTo :NeuerVersuch EndIf EndIf // ------------ Program-group :NeuerVersuch2 If vClientG == ' ' vPrgGrp = SelectProgramGroup tMeldung[sprache][5] tMeldung[sprache][12] If __error__ == 0 fputs fp 'Der Benutzer hat die Installation abgebrochen !\n' Exit EndIf Else vPrgGrp = vClientG EndIf EndIf DialogLoggingOn fputs fp 'Installation von: %vInstallDirVon%\n' fputs fp 'Installation nach: %vDir%\n\n' // falls noch alte Installationen vorhanden sind, diese umbenennen ! MoveFile '%__WindowsVerzeichnis__%\\Hardcopy.exe' '%__WindowsVerzeichnis__%\\Hardcopy.alt' MoveFile '%__WindowsVerzeichnis__%\\HcpntDll.Dll' '%__WindowsVerzeichnis__%\\HcpNtDll.alt' MoveFile '%__WindowsVerzeichnis__%\\HcpDll.Dll' '%__WindowsVerzeichnis__%\\HcpDll.alt' If vClient != 'yes' // falls noch alte Installationen vorhanden sind, diese umbenennen ! MoveFile '%vDir%\\HcpDll.dll' '%vDir%\\hcpdll.old' MoveFile '%vDir%\\HcpntDll.dll' '%vDir%\\hcpntdll.old' MoveFile '%vDir%\\Hardcopy.exe' '%vDir%\\hardcopy.old' If __System32__ == 1 CopyFile '%vInstallDirVon%\\HcpNTdll.dll' '%vDir%\\hcpntdll.dll' Always fp Fehler += __Error__ CopyFile '%vInstallDirVon%\\HrdCpy32.exe' '%vDir%\\hardcopy.exe' Always fp Fehler += __Error__ Else // windows95 oder windows 3.n CopyFile '%vInstallDirVon%\\HcpDll.dll' '%vDir%\\hcpdll.dll' fp Fehler += __Error__ CopyFile '%vInstallDirVon%\\Hardcopy.exe' '%vDir%\\hardcopy.exe' fp Fehler += __Error__ Endif EndIf // falls vorhanden CopyFile '%vInstallDirVon%\\hcpdll.ini' '%vDir%\\hcpdll.ini' Always // falls vorhanden If __Language__ == 'deu' If __WinVersion__ < 4 CopyFile '%vInstallDirVon%\\hardco3d.hlp' '%vDir%\\hardcopy.hlp' Always Else CopyFile '%vInstallDirVon%\\hardcopd.hlp' '%vDir%\\hardcopy.hlp' Always EndIf // f = fopen '%vDir%\\Hardcopy.cnt' 'w' // fputs f ':Base hardcopy.hlp\n' // fputs f '1 Hardcopy\n' // fputs f '2 Allgemeines=main_index\n' // fputs f '2 Installation=installation\n' // fputs f '1 Menⁿs\n' // fputs f '2 dies kommt mit der nΣchsten Version=aaa\n' // fclose f Else If __WinVersion__ < 4 CopyFile '%vInstallDirVon%\\hardco3e.hlp' '%vDir%\\hardcopy.hlp' Always Else CopyFile '%vInstallDirVon%\\hardcope.hlp' '%vDir%\\hardcopy.hlp' Always EndIf EndIf fputs fp '\n' // ------------ Hardcopy.ini tini[0] = 'Cr' tini[1] = 'Cr2' tini[2] = 'Cr3' tini[3] = 'menu' tini[4] = 'taskbar' tini[5] = 'DeleteClipboard' tini[6] = 'Network' tini[7] = 'PrintDate' tini[8] = 'SaveAs' tini[9] = 'Gif' tini[10] = 'Mono' i = 11 While i i -- vIni = ' ' vIni = GetIniFile '%vInstallDirVon%\\setup.ini' 'Verwendung' tini[i] If vIni != ' ' SetIniFile '%__WindowsVerzeichnis__%\\hardcopy.ini' 'Verwendung' tini[i] vIni EndIf EndWhile // ------------ Hardcopy-icon CreateItem '\\PG\\%vPrgGrp%' 'Hardcopy' '%vDir%\\Hardcopy.exe' '' '%vDir%' '%vDir%\\Hardcopy.exe' 0 1 If __error__ == 0 fputs fp '%tMeldung[sprache][13]%\n' MessageBox tMeldung[sprache][13] GoTo :NeuerVersuch2 EndIf fputs fp 'Ok: CreateItem "%vPrgGrp%" ---> Hardcopy\n' // ------------ Hardcopy-icon in Autostart If vAutostart CreateItem '\\PS\\' 'Hardcopy' '%vDir%\\Hardcopy.exe' '' '%vDir%' '%vDir%\\Hardcopy.exe' 0 1 If __error__ == 0 fputs fp 'Error Create Icon "Autostart"\n' Else fputs fp 'Ok: CreateItem "Autostart" ---> Hardcopy\n' EndIf EndIf // ------------ Readme vReadme = 'ReadMe' If __Language__ == 'deu' vReadme = 'LiesMich' EndIf If __Language__ == 'fra' vReadme = 'Lisezmoi' EndIf If __Language__ == 'frb' vReadme = 'Lisezmoi' EndIf If __Language__ == 'frc' vReadme = 'Lisezmoi' EndIf If vClient != 'yes' CopyFile '%vInstallDirVon%\\readme.txt' '%vDir%\\%vReadme%.txt' fp CreateItem '\\PG\\%vPrgGrp%' vReadme 'notepad' '%vDir%\\%vReadme%.txt' '%vDir%' 'notepad.exe' 0 0 Else CreateItem '\\PG\\%vPrgGrp%' vReadme 'notepad' '%vInstallDirVon%\\readme.txt' '%vDir%' 'notepad.exe' 0 0 EndIf // ------------ Uninstall Hardcopy with Registry vUninst = 'Uninstall Hardcopy' If __Language__ == 'deu' vUninst = 'Hardcopy entfernen' EndIf If __WinVersion__ < 4 CreateItem '\\PG\\%vPrgGrp%' vUninst 'SwSetupu.exe' '%__WindowsVerzeichnis__%\\hardcopy.del' '%__WindowsVerzeichnis__%' '%__WindowsVerzeichnis__%\\SwSetupu.exe' 0 0 Else SetRegistry 'HKEY_LOCAL_MACHINE' 'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Hardcopy' 'DisplayName' 'Uninstall Hardcopy' If __Error__ != 0 MessageBox 'Error Set Registry (Uninstall DisplayName).' EndIf SetRegistry 'HKEY_LOCAL_MACHINE' 'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Hardcopy' 'UninstallString' 'SwSetupu %__WindowsDirectory__%\\Hardcopy.del' If __Error__ != 0 MessageBox 'Error Set Registry (UninstallString).' EndIf EndIf fpDel = fopen '%__WindowsVerzeichnis__%\\hardcopy.del' 'w' If __error__ == 0 fputs fp 'Datei ''%vDir%\\hardcopy.del'' kann nicht ge÷ffnet werden\n' MessageBox 'Datei ''%vDir%\\hardcopy.del'' kann nicht ge÷ffnet werden' Fehler = 1 EndIf vT1 = 'Uninstall Hardcopy' vT2 = 'This will remove "Hardcopy".\\nDo you wish continue ?' vT3 = 'Hardcopy removed.' If __Language__ == 'deu' vT1 = 'Hardcopy entfernen' vT2 = 'M÷chten Sie tatsΣchlich Hardcopy entfernen ?' vT3 = 'Hardcopy wurde entfernt !' EndIf fputs fpDel 'CreateBackground ''%vT1%''\n' fputs fpDel 'DialogOut ''%vT1%''\n' fputs fpDel 'MessageBox ''%vT2%'' 36\n' fputs fpDel 'If __error__ == 6\n' If vClient != 'yes' fputs fpDel ' DeleteFile ''%vDir%\\\\HcpNTdll.Dll''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\Hardcopy.exe''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\HcpDll.Dll''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\HcpNTdll.Dll.old''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\Hardcopy.exe.old''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\HcpDll.Dll.old''\n' fputs fpDel ' DeleteFile ''%vDir%\\\\%vReadme%.txt''\n' fputs fpDel ' rmdir ''%vDir%''\n' EndIf fputs fpDel ' DeleteFile ''%%__WindowsVerzeichnis__%%\\\\hardcopy.log''\n' fputs fpDel ' DeleteFile ''%%__WindowsVerzeichnis__%%\\\\hardcopy.del''\n' fputs fpDel ' DeleteFile ''%%__WindowsVerzeichnis__%%\\\\hardcopy.ini''\n' fputs fpDel ' CreateItem ''-\\\\PG\\\\%vPrgGrp%'' ''Hardcopy'' '''' '''' '''' '''' 0 0\n' fputs fpDel ' CreateItem ''-\\\\PS\\\\%vPrgGrp%'' ''Hardcopy'' '''' '''' '''' '''' 0 0\n' fputs fpDel ' CreateItem ''-\\\\PG\\\\%vPrgGrp%'' ''%vReadme%'' '''' '''' '''' '''' 0 0\n' fputs fpDel ' CreateItem ''-\\\\PG\\\\%vPrgGrp%'' ''%vUninst%'' '''' '''' '''' '''' 0 0\n' fputs fpDel ' DeleteRegistry ''HKEY_LOCAL_MACHINE'' ''SOFTWARE\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\Uninstall\\\\Hardcopy'' ''''\n' fputs fpDel ' MessageBox ''%vT3%''\n' fputs fpDel 'EndIf\n' // ------------ fputs fp '\nEnde\n' If Fehler != 0 vText = '\r\nError by installation, will you see the installation-log ?' If __Language__ == 'deu' vText = '\r\nBei der Installation ist ein Fehler aufgetreten,\r\nsoll die Installations-Logdatei angezeigt werden ?' EndIf MessageBox vText 36 If __error__ == 6 fclose fp Exec 'notepad %vLogFileName%' Exit EndIf Endif If Fehler == 0 If vExec Exec '%vDir%\\Hardcopy.exe' MessageBox tMeldung[sprache][10] Else MessageBox tMeldung[sprache][9] EndIf EndIf fclose fp