mirror of
https://github.com/glennrice/PortableDesktop.git
synced 2024-12-05 07:28:24 +10:00
Initial commit with contributors
This commit is contained in:
commit
c8ebd26a4b
29
README.md
Normal file
29
README.md
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# README #
|
||||||
|
|
||||||
|
This README would normally document whatever steps are necessary to get your application up and running.
|
||||||
|
|
||||||
|
### What is this repository for? ###
|
||||||
|
|
||||||
|
* Quick summary
|
||||||
|
* Version
|
||||||
|
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
||||||
|
|
||||||
|
### How do I get set up? ###
|
||||||
|
|
||||||
|
* Summary of set up
|
||||||
|
* Configuration
|
||||||
|
* Dependencies
|
||||||
|
* Database configuration
|
||||||
|
* How to run tests
|
||||||
|
* Deployment instructions
|
||||||
|
|
||||||
|
### Contribution guidelines ###
|
||||||
|
|
||||||
|
* Writing tests
|
||||||
|
* Code review
|
||||||
|
* Other guidelines
|
||||||
|
|
||||||
|
### Who do I talk to? ###
|
||||||
|
|
||||||
|
* Repo owner or admin
|
||||||
|
* Other community or team contact
|
244
Work-Start.au3
Normal file
244
Work-Start.au3
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
#include <Array.au3>
|
||||||
|
#include <Constants.au3>
|
||||||
|
|
||||||
|
OnAutoItExitRegister ( 'OnAutoItExit' )
|
||||||
|
|
||||||
|
;CONFIGURE THESE PATHS!!!
|
||||||
|
|
||||||
|
;These files should be on the non-encrypted drive
|
||||||
|
|
||||||
|
; Truecrypt volumes to mount
|
||||||
|
$WorkVolume = "\Profiles\Drives\glenn-workspace.tc"
|
||||||
|
$WorkDrive = "W"
|
||||||
|
|
||||||
|
$DocsVolume = "\Profiles\Drives\Documents.tc"
|
||||||
|
$MailVolume = "\Profiles\Drives\mail-profiles.tc"
|
||||||
|
|
||||||
|
|
||||||
|
$Work2Volume = "\Profiles\Drives\FilingCabinet.tc"
|
||||||
|
|
||||||
|
$TrueCrpytExe = "\Profiles\Tools\TrueCrypt\TrueCrypt.exe"
|
||||||
|
$CoffeeExe = ":\Utility\Coffee\Coffee.exe"
|
||||||
|
$JungleDisk = ":\Utility\jungledisk-usb\JungleDiskMonitor.exe"
|
||||||
|
|
||||||
|
;These files should be on the encrypted drive
|
||||||
|
;$MainSandboxieFolder = ":\PortableApps\SandboxiePortable\"
|
||||||
|
|
||||||
|
$My_Nimi_Places = ":\Utility\my_nimi_places\"
|
||||||
|
|
||||||
|
$PStartExe = ":\Start.exe"
|
||||||
|
;$MojoStartExe = "P:\Start.exe"
|
||||||
|
$KeepassExe = ":\Utility\keepass\KeePass.exe"
|
||||||
|
|
||||||
|
;END OF CONFIGURATION
|
||||||
|
|
||||||
|
; in this case, instead of searching for free drive letters
|
||||||
|
; we want to mount as M:
|
||||||
|
;$alphabet = StringSplit("abcdefghijklmnopqrstuvwxyz","")
|
||||||
|
;$drives = DriveGetDrive("ALL")
|
||||||
|
;$drives = _ArrayToString($drives,"",1)
|
||||||
|
;$drives = StringRegExpReplace($drives, "[ :]", "")&"b"
|
||||||
|
;For $i = 1 to 26
|
||||||
|
; If StringInStr($drives,$alphabet[$i])=0 Then
|
||||||
|
; $FDL = $alphabet[$i]
|
||||||
|
; ExitLoop
|
||||||
|
; EndIf
|
||||||
|
;Next
|
||||||
|
;If StringLen($FDL)<>1 Then
|
||||||
|
; MsgBox(0,"Drive Launcher","There are no free drive letters!")
|
||||||
|
; Exit
|
||||||
|
;EndIf
|
||||||
|
|
||||||
|
$HostDrive = StringLeft(@AutoItExe, 2)
|
||||||
|
$volumefile = $HostDrive&$WorkVolume
|
||||||
|
$password = InputBox("Password", "Please input the unlock code","","*",225,110)
|
||||||
|
$TCPID = RunWait($TrueCrpytExe&" /v "&$volumefile&" /lw /p "&$password&" /q")
|
||||||
|
|
||||||
|
;If StringLen($TCPID)<3 Then
|
||||||
|
; MsgBox(0,"Drive Launcher","Problem encountered while launching TrueCrypt.exe ["&$TCPID&"]"&@error)
|
||||||
|
; Exit
|
||||||
|
;EndIf
|
||||||
|
;If ProcessWaitClose($TCPID,60)=0 Then
|
||||||
|
; MsgBox(0,"Drive Launcher","TrueCrypt did not close after 60 seconds")
|
||||||
|
; Exit
|
||||||
|
;EndIf
|
||||||
|
|
||||||
|
; main W: drive now mounted
|
||||||
|
; mount our two supplemental volumes
|
||||||
|
|
||||||
|
$volumefile = $HostDrive&$DocsVolume
|
||||||
|
RunWait($TrueCrpytExe&" /v "&$volumefile&" /lp /p "&$password&" /q")
|
||||||
|
|
||||||
|
;$volumefile = $HostDrive&$WorkVolume
|
||||||
|
;RunWait($TrueCrpytExe&" /v "&$volumefile&" /lr /p "&$password&" /q")
|
||||||
|
|
||||||
|
; Mail Profiles
|
||||||
|
;$volumefile = $HostDrive&$MailVolume
|
||||||
|
;RunWait($TrueCrpytExe&" /v "&$volumefile&" /lm /p "&$password&" /q")
|
||||||
|
|
||||||
|
;$volumefile = $HostDrive&"\Profiles\Drives\BackupBrain.tc"
|
||||||
|
;RunWait($TrueCrpytExe&" /v "&$volumefile&" /lw /p "&$password&" /q")
|
||||||
|
|
||||||
|
; Run KeePass...
|
||||||
|
;Run($WorkDrive&$KeepassExe&' "H:\Documents - Glenn\gr_database.kdb" '&"-pw:"&$password)
|
||||||
|
;Sleep(1500)
|
||||||
|
|
||||||
|
; ...start the PortableApps menu...
|
||||||
|
Run($WorkDrive&$PStartExe)
|
||||||
|
Sleep(500)
|
||||||
|
|
||||||
|
; ... start JungleDisk ...
|
||||||
|
Run($WorkDrive&$JungleDisk)
|
||||||
|
Sleep(500)
|
||||||
|
|
||||||
|
; ... start Nimi ...
|
||||||
|
Run($WorkDrive&":\Utility\nimi\Nimi Places.exe")
|
||||||
|
Sleep(500)
|
||||||
|
|
||||||
|
; Now start Coffee for portable file associations...
|
||||||
|
Run($WorkDrive&$CoffeeExe)
|
||||||
|
;Sleep(500)
|
||||||
|
|
||||||
|
; setup some desktop icons
|
||||||
|
|
||||||
|
;$FileName = "P:\Start.exe"
|
||||||
|
;$LinkFileName = @DesktopDir & "\Start Personal Desktop.lnk"
|
||||||
|
;$WorkingDirectory = "P:\"
|
||||||
|
;$Description = "This starts my mobile personal MojoPac desktop"
|
||||||
|
;$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
;FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
;$FileName = $drive&"\mobile-backup.exe"
|
||||||
|
;$LinkFileName = @DesktopDir & "\Mobile Backup.lnk"
|
||||||
|
;$WorkingDirectory = "F:\"
|
||||||
|
;$Description = "This starts my mobile backup utility"
|
||||||
|
;$icon = @SystemDir & "\shell32.dll"
|
||||||
|
;$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
;FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description,$icon,"","47",$State)
|
||||||
|
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\mremoteNG\mRemoteNG.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Quick Links\mRemote.lnk"
|
||||||
|
$WorkingDirectory = $WorkDrive&":\Utility\mremoteNG\"
|
||||||
|
$Description = "mRemoteNG - remote server access tool"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\jungledisk-usb\junglediskmonitor.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Tools\jungledisk-usb.lnk"
|
||||||
|
$WorkingDirectory = $WorkDrive&":\Utility\jungledisk-usb\"
|
||||||
|
$Description = "JungleDisk"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
$FileName = $HostDrive&"\Profiles\Tools\truecrypt\truecrypt.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Tools\Truecrypt Portable.lnk"
|
||||||
|
$WorkingDirectory = $HostDrive&"\Profiles\Drives\"
|
||||||
|
$Description = "TrueCrypt - encryption tool"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\KeePass\keepass.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Tools\KeePass Portable.lnk"
|
||||||
|
$WorkingDirectory = "P:\Documents\"
|
||||||
|
$Description = "KeePass"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\UltraRecall\UltraRecall.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Quick Links\UltraRecall Portable.lnk"
|
||||||
|
$WorkingDirectory = "P:\Documents\"
|
||||||
|
$Description = "UltraRecall PIM"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\EPIM\EssentialPIM.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Quick Links\EssentialPIM Pro Portable.lnk"
|
||||||
|
$WorkingDirectory = "P:\Documents\"
|
||||||
|
$Description = "EssentialPIM Pro"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
$FileName = $WorkDrive&":\Utility\fossil\fossil.exe"
|
||||||
|
$LinkFileName = $WorkDrive & $My_Nimi_Places & "Quick Links\Fossil.lnk"
|
||||||
|
$WorkingDirectory = "P:\PrimeTech\Projects\"
|
||||||
|
$Description = "Fossil SCM"
|
||||||
|
$State = @SW_SHOWNORMAL ;Can also be @SW_SHOWNORMAL or @SW_SHOWMINNOACTIVE
|
||||||
|
|
||||||
|
FileCreateShortcut($FileName,$LinkFileName,$WorkingDirectory,"",$Description)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; wait until it finishes
|
||||||
|
Sleep(16000)
|
||||||
|
ProcessWaitClose("PortableAppsPlatform.exe")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Func OnAutoItExit()
|
||||||
|
Sleep(5000)
|
||||||
|
|
||||||
|
ProcessClose("Coffee.exe")
|
||||||
|
|
||||||
|
if ProcessExists("thunderbird.exe") then
|
||||||
|
ProcessClose ( "thunderbird.exe")
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ProcessExists ( "firefox.exe" ) then
|
||||||
|
ProcessClose ("firefox.exe")
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ProcessExists ( "SkypePortable.exe" ) then
|
||||||
|
ProcessClose ("Skype.exe")
|
||||||
|
ProcessClose ("SkypePortable.exe")
|
||||||
|
Sleep(1000)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ProcessExists ( "JungleDiskMonitor.exe" ) then
|
||||||
|
ProcessClose ("JungleDiskMonitor.exe")
|
||||||
|
Sleep(1000)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ProcessExists ( "KeePass.exe" ) then
|
||||||
|
ProcessClose ("KeePass.exe")
|
||||||
|
Sleep(1000)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ProcessExists("Dropbox.exe") then
|
||||||
|
ProcessClose ( "Dropbox.exe")
|
||||||
|
endif
|
||||||
|
if ProcessExists("DropboxPortableAHK.exe") then
|
||||||
|
ProcessClose ( "DropboxPortableAHK.exe")
|
||||||
|
endif
|
||||||
|
|
||||||
|
; remove some desktop icons
|
||||||
|
; FileDelete(@DesktopDir & "\Start Personal Desktop.lnk")
|
||||||
|
; FileDelete(@DesktopDir & "\Mobile Backup.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Tools\mRemote.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Tools\jungledisk-usb.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Tools\KeePass Portable.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Tools\Truecrypt Portable.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Quick Links\UltraRecall Portable.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Quick Links\EssentialPIM Pro Portable.lnk")
|
||||||
|
FileDelete($WorkDrive & $My_Nimi_Places & "Quick Links\Fossil.lnk")
|
||||||
|
|
||||||
|
if ProcessExists("Nimi Places.exe") then
|
||||||
|
ProcessClose ( "Nimi Places.exe" )
|
||||||
|
endif
|
||||||
|
|
||||||
|
Sleep(1000)
|
||||||
|
|
||||||
|
ShellExecuteWait($HostDrive&$TrueCrpytExe,"/d /q")
|
||||||
|
|
||||||
|
; ShellExecute($HostDrive&"\psshutdown.exe","-k -c")
|
||||||
|
EndFunc
|
1
contributors.txt
Normal file
1
contributors.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
"Glenn Rice"
|
Loading…
Reference in New Issue
Block a user