Skip to content

Commit

Permalink
AU: 1 updated - free-virtual-keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jun 18, 2018
1 parent be74250 commit fa61e46
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions automatic/free-virtual-keyboard/free-virtual-keyboard.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>free-virtual-keyboard</id>
<version>3.0</version>
<version>4.1</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/free-virtual-keyboard</packageSourceUrl>
<owners>chocolatey</owners>
<title>Free Virtual Keyboard</title>
Expand All @@ -16,7 +16,7 @@
<tags>free-virtual-keyboard on-screen keyboard freeware admin</tags>
<summary>A free, lightweight, multilingual and finger friendly virtual on-screen keyboard</summary>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description>
<description><![CDATA[
Free Virtual Keyboard works on any Windows based UMPC with a passive touchscreen (Ultra-mobile PC, Tablet PC and Panel PC). If you spend a lot of time responding to e-mail or jotting down notes on your mobile computer and find your hardware keyboard awkward or too small, a screen software keyboard may be just the improvement you've been seeking. This handy keyboard has keys large enough to be typed with the fingertips.
## Features
Expand All @@ -26,9 +26,10 @@ Free Virtual Keyboard works on any Windows based UMPC with a passive touchscreen
- Run it from portable USB flash drive
- Supports Microsoft Windows ® 2000/XP/Vista/7/8/8.1/10
![screenshot](https://rawgit.com/chocolatey/chocolatey-coreteampackages/5aba809ba5b396201f3b08ec84c52ff2c1604369/manual/free-virtual-keyboard/screenshot.png)
</description>
<releaseNotes>__REPLACE_OR_REMOVE__Markdown_Okay__May_Be_A_URL</releaseNotes>
![screenshot](https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/64da03b6c44423d312ac78be89538b7af22080e6/automatic/free-virtual-keyboard/screenshot.png)
]]></description>
<releaseNotes>https://freevirtualkeyboard.blogspot.com/2018/01/free-virtual-keyboard-41.html</releaseNotes>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions automatic/free-virtual-keyboard/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $packageArgs = @{
packageName = $packageName
fileType = 'exe'
url = 'http://freevirtualkeyboard.com/FreeVKSetup.exe'
checksum = 'f5425f3d2ff11e8a0b98fc5fa652802a6e60b8c6361aa562002ea213d86d8aef'
checksum = '2d39cfa60aa3c350919b60986c8c747e1106f29cee9ddb805f23249d7783d657'
softwareName = 'Free Virtual Keyboard'
checksumType = 'sha256'
silentArgs = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
Expand All @@ -18,12 +18,12 @@ Install-ChocolateyPackage @packageArgs
$installLocation = Get-AppInstallLocation $packageArgs.softwareName
if ($installLocation) {
Write-Host "$packageName installed to '$installLocation'"
$path = gci "$installLocation\*.exe" | select -First 1 -ExpandProperty FullName
$path = Get-ChildItem "$installLocation\*.exe" | Select-Object -First 1 -ExpandProperty FullName
Register-Application $path -Name $packageName
Write-Host "$packageName registered as $packageName"
} else {
Write-Warning "Can't find $PackageName install location"
}

# Installer will start the process after installation, kill it
ps freevk -ea 0 | kill
Get-Process freevk -ea 0 | Stop-Process

0 comments on commit fa61e46

Please sign in to comment.