-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStartup.pfs
76 lines (72 loc) · 3.03 KB
/
Startup.pfs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<FileVersion>1.2</FileVersion>
<Code><![CDATA[#Define a Param block to use custom parameters in the project
#Param ($CustomParameter)
function Main {
Param ([String]$Commandline)
#Note: This function starts the application
#Note: $Commandline contains the complete argument string passed to the packager
#Note: $Args contains the parsed arguments passed to the packager (Type: System.Array)
#Note: To get the script directory in the Packager use: Split-Path $hostinvocation.MyCommand.path
#Note: To get the console output in the Packager (Windows Mode) use: $ConsoleOutput (Type: System.Collections.ArrayList)
#TODO: Initialize and add Function calls to forms
if((Call-MainForm_pff) -eq "OK")
{
}
$global:ExitCode = 0 #Set the exit code for the Packager
}]]></Code>
<Assemblies>
<Assembly>System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll</Assembly>
<Assembly>System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</Assembly>
<Assembly>System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll</Assembly>
<Assembly>System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll</Assembly>
<Assembly>mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</Assembly>
<Assembly>System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll</Assembly>
<Assembly>System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.XML.dll</Assembly>
<Assembly>System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a|C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll</Assembly>
</Assemblies>
<Packager>
<General>
<PackageName>
</PackageName>
<PackageIcon>
</PackageIcon>
<ManifestCreation>1</ManifestCreation>
<CustomManifest>
</CustomManifest>
<Platform>-1</Platform>
<RunSTA>0</RunSTA>
</General>
<Security>
<Username>
</Username>
<Password>
</Password>
<SignPackage>False</SignPackage>
<Certificate>
</Certificate>
<CertificatePassword>
</CertificatePassword>
<RunAs>0</RunAs>
</Security>
<Version>
<FileVersion>
</FileVersion>
<ProductVersion>
</ProductVersion>
<ProductName>
</ProductName>
<Description>
</Description>
<Company>
</Company>
<Copyright>
</Copyright>
<InternalName>
</InternalName>
<OriginalFileName>
</OriginalFileName>
<Comment>
</Comment>
</Version>
</Packager>