Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vagrantsetup
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
devbox
vagrantsetup
Commits
79ccc768
Commit
79ccc768
authored
Sep 11, 2019
by
Reimar Stier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add choco example to install exe from network share
parent
cc53353e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
57 additions
and
0 deletions
+57
-0
.gitignore
windows/examples/.gitignore
+1
-0
Chocolatey.md
windows/examples/Chocolatey.md
+2
-0
jdk6.nuspec
windows/examples/lib/jdk6/jdk6.nuspec
+17
-0
chocolateyInstall.ps1
windows/examples/lib/jdk6/tools/chocolateyInstall.ps1
+10
-0
jdk8.nuspec
windows/examples/lib/jdk8/jdk8.nuspec
+17
-0
chocolateyInstall.ps1
windows/examples/lib/jdk8/tools/chocolateyInstall.ps1
+10
-0
Readme.md
windows/examples/lib/windirstat/Readme.md
+0
-0
chocolateyInstall.ps1
windows/examples/lib/windirstat/tools/chocolateyInstall.ps1
+0
-0
windirstat.nuspec
windows/examples/lib/windirstat/windirstat.nuspec
+0
-0
No files found.
windows/examples/.gitignore
0 → 100644
View file @
79ccc768
*.nupkg
windows/examples/Chocolatey.md
View file @
79ccc768
...
...
@@ -18,3 +18,5 @@ https://chocolatey.org/blog/create-chocolatey-packages
https://github.com/chocolatey/choco/wiki/HelpersInstallChocolateyPackage
https://github.com/chocolatey/choco/wiki/HelpersInstallChocolateyInstallPackage
# Using local repository
choco.exe install jdk6 -dv -s /c/projects/devbox/windows/examples/lib
windows/examples/lib/jdk6/jdk6.nuspec
0 → 100644
View file @
79ccc768
<?xml version="1.0" encoding="utf-8"?>
<package
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd=
"http://www.w3.org/2001/XMLSchema"
>
<metadata>
<id>
jdk6
</id>
<version>
1.6.0_45
</version>
<title>
JDK 6 (Install)
</title>
<authors>
Oracle
</authors>
<requireLicenseAcceptance>
false
</requireLicenseAcceptance>
<tags>
jdk6 java6
</tags>
<summary>
Java JDK 6
</summary>
<description>
Java dev kit
</description>
</metadata>
<files>
<file
src=
"tools\**"
target=
"tools"
/>
</files>
</package>
windows/examples/lib/jdk6/tools/chocolateyInstall.ps1
0 → 100644
View file @
79ccc768
$packageArgs
=
@
{
packageName
=
'jdk6'
fileType
=
'exe'
file
=
'\\s415001f.detss.corpintra.net\E415_Projekte\Robotics\java\jdk-6u45-windows-i586.exe'
silentArgs
=
"/quiet"
validExitCodes
=
@
(
0
)
softwareName
=
'Java*'
}
Install-ChocolateyInstallPackage @packageArgs
\ No newline at end of file
windows/examples/lib/jdk8/jdk8.nuspec
0 → 100644
View file @
79ccc768
<?xml version="1.0" encoding="utf-8"?>
<package
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd=
"http://www.w3.org/2001/XMLSchema"
>
<metadata>
<id>
jdk8
</id>
<version>
1.8.0_121
</version>
<title>
JDK 8 (Install)
</title>
<authors>
Oracle
</authors>
<requireLicenseAcceptance>
false
</requireLicenseAcceptance>
<tags>
jdk8 java8
</tags>
<summary>
Java JDK 8
</summary>
<description>
Java dev kit
</description>
</metadata>
<files>
<file
src=
"tools\**"
target=
"tools"
/>
</files>
</package>
windows/examples/lib/jdk8/tools/chocolateyInstall.ps1
0 → 100644
View file @
79ccc768
$packageArgs
=
@
{
packageName
=
'jdk8'
fileType
=
'exe'
file
=
'\\s415001f.detss.corpintra.net\E415_Projekte\Robotics\java\jdk-8u112-windows-x64.exe'
silentArgs
=
"/quiet"
validExitCodes
=
@
(
0
)
softwareName
=
'Java*'
}
Install-ChocolateyInstallPackage @packageArgs
\ No newline at end of file
windows/examples/windirstat/Readme.md
→
windows/examples/
lib/
windirstat/Readme.md
View file @
79ccc768
File moved
windows/examples/windirstat/tools/chocolateyInstall.ps1
→
windows/examples/
lib/
windirstat/tools/chocolateyInstall.ps1
View file @
79ccc768
File moved
windows/examples/windirstat/windirstat.nuspec
→
windows/examples/
lib/
windirstat/windirstat.nuspec
View file @
79ccc768
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment