Downloads:
178,713
Downloads of v 1.4.2:
772
Last Update:
11 May 2016
Package Maintainer(s):
Software Author(s):
- ScreenToGif
Tags:
screen recording recorder gifScreen To Gif
This is not the latest version of Screen To Gif available.
- 1
- 2
- 3
1.4.2 | Updated: 11 May 2016
Downloads:
178,713
Downloads of v 1.4.2:
772
Maintainer(s):
Software Author(s):
- ScreenToGif
Screen To Gif 1.4.2
This is not the latest version of Screen To Gif available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by ScreenToGif. The inclusion of ScreenToGif trademark(s), if any, upon this webpage is solely to identify ScreenToGif goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Screen To Gif, run the following command from the command line or from PowerShell:
To upgrade Screen To Gif, run the following command from the command line or from PowerShell:
To uninstall Screen To Gif, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download screentogif --internalize --version=1.4.2 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade screentogif -y --source="'INTERNAL REPO URL'" --version="'1.4.2'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade screentogif -y --source="'INTERNAL REPO URL'" --version="'1.4.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install screentogif
win_chocolatey:
name: screentogif
version: '1.4.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'screentogif' do
action :install
source 'INTERNAL REPO URL'
version '1.4.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller screentogif
{
Name = "screentogif"
Version = "1.4.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'screentogif':
ensure => '1.4.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator dtgm on 12 May 2016.
This tool allows you to record a selected area of your screen and save it as a Gif.
Features:
- Record your screen and save directly to a gif looped animation or a video.
- Pause and continue to record or start over by discard the recording.
- Move the window around to record what you want, it stays on top.
- You can add Text, Subtitles, Title Frames, Borders, Watermarks, Drawings, etc.
- Crop and Resize.
- Remove frames that you don't want.
- Select a folder to save the file automatically or select one before encoding.
- Add the system cursor to your recording.
- Very small sized and portable (uses a settings file under the AppData folder) executable.
$tools = Split-Path $MyInvocation.MyCommand.Definition
. $tools\shortcut.ps1
Uninstall-Shortcut `
-Link 'Screen to Gif' `
-SpecialFolder 'CommonPrograms'
<#
.SYNOPSIS
Install-Shortcut creates a new shortcut to a file or program.
.DESCRIPTION
Install-Shortcut wraps the COM Object, Wscript.Shell, and its arguments to create
a shortcut to a file or program. It requires some very specific input, please
review the notes on each parameter.
.PARAMETER Link
The shortcut to create.
The underlying COM Object requires an absolute path. This function will
attempt to properly expand that path, especially if you provide a
SpecialFolder as a root directory.
The underlying COM Object also requires that the link's path/name end in
either .lnk or .url. This function will attempt to add that file extension if
it is not provided.
The underlying COM Object will fail silently in many cases, especially due to
improperly formatted link paths. This function will test the existence of the
expected link using this parameter and fail if it is not found.
.PARAMETER Target
The target of the shortcut.
This path must exist. This function will attempt to expand the path to its
absolute value.
.PARAMETER SpecialFolder
The Windows special folder to contain this shortcut.
If you want to create a shortcut at one of the system managed paths, such as
the Desktop or the Start Menu, you should use the special tokens provided.
The most commonly used are
* CommonDesktop
* CommonStartup
* CommonPrograms
If you provide a special folder, the Link parameter may contain a simple
"name" and not a file path.
The full list of special folders can be found here:
https://msdn.microsoft.com/en-us/library/system.environment.specialfolder(v=vs.110).aspx
.PARAMETER Icon
The icon of the shortcut.
This can take several forms and, due to this, is not validated carefully. You
can provide an absolute file path (this is your responsibility), like
"C:\Windows\notepad.exe"
Or, you can provide an absolute file path and an index into the resources of
that program, like
"C:\Windows\notepad.exe, 1"
.PARAMETER Description
The tooltip to display on the shortcut.
.PARAMETER Launch
Whether to launch this link immediately after creating it. Useful for links
created in the CommonStartup special folder.
.EXAMPLE
Install-Shortcut -Link "foo" -Target "foo.exe" -SpecialFolder "CommonPrograms" -Description "Foo Bar"
.EXAMPLE
Uninstall-Shortcut -Link "foo" -SpecialFolder "CommonDesktop"
.LINK
https://github.com/AnthonyMastrean/chocolateypackages/blob/master/helpers/shortcut.ps1
#>
function Install-Shortcut {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string] $Link,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[ValidateScript({ Test-Path $_ })]
[string] $Target,
[string] $SpecialFolder,
[string] $Icon,
[string] $Description,
[switch] $Launch
)
$Link = Resolve-ShortcutLink -Link $Link -SpecialFolder $SpecialFolder
$shell = New-Object -ComObject 'Wscript.Shell'
$shortcut = $shell.CreateShortcut($Link)
$shortcut.TargetPath = (Resolve-Path $Target).Path
$shortcut.WorkingDirectory = (Split-Path (Resolve-Path $Target).Path)
if($Icon) {
$shortcut.IconLocation = $Icon
}
if($Description) {
$shortcut.Description = $Description
}
$shortcut.Save()
if(-not(Test-Path $Link)) {
throw "Failed to create shortcut: $Link"
}
if($Launch) {
& $Link
}
}
function Uninstall-Shortcut {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string] $Link,
[string] $SpecialFolder
)
$Link = Resolve-ShortcutLink -Link $Link -SpecialFolder $SpecialFolder
Remove-Item $Link -Force | Out-Null
}
function Resolve-ShortcutLink {
param(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string] $Link,
[string] $SpecialFolder
)
if(-not($Link.ToLower().EndsWith('.lnk') -or $Link.ToLower().EndsWith('.url'))) {
$Link = "$Link.lnk"
}
if($SpecialFolder) {
$Link = Join-Path ([System.Environment]::GetFolderPath($SpecialFolder)) $Link
}
$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Link)
}
Log in or click on link to see number of positives.
- screentogif.1.4.2.nupkg (3dc6b797d414) - ## / 57
- ScreenToGif 1.4.2.exe (6bb75f3d9a7f) - ## / 56
- ScreenToGif 1.4.2.zip (825964a156fc) - ## / 56
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Screen To Gif (Portable) 2.41.0 | 4848 | Monday, May 13, 2024 | Approved | |
Screen To Gif (Portable) 2.39.0.20231002 | 6224 | Monday, October 2, 2023 | Approved | |
Screen To Gif (Portable) 2.39.0 | 494 | Sunday, October 1, 2023 | Approved | |
Screen To Gif (Portable) 2.38.1 | 3722 | Saturday, September 16, 2023 | Approved | |
Screen To Gif (Portable) 2.37.0 | 15564 | Sunday, May 1, 2022 | Approved | |
Screen To Gif (Portable) 2.36.0 | 4780 | Sunday, February 13, 2022 | Approved | |
Screen To Gif (Portable) 2.35.4 | 3356 | Tuesday, January 18, 2022 | Approved | |
Screen To Gif (Portable) 2.35.3 | 1577 | Tuesday, January 11, 2022 | Approved | |
Screen To Gif 2.35.2 | 2190 | Friday, December 24, 2021 | Approved | |
Screen To Gif 2.34.1 | 3880 | Monday, November 8, 2021 | Approved | |
Screen To Gif 2.34.0 | 3464 | Thursday, September 30, 2021 | Approved | |
Screen To Gif 2.33.1 | 150 | Thursday, September 30, 2021 | Approved | |
Screen To Gif 2.33.0 | 5328 | Wednesday, July 14, 2021 | Approved | |
Screen To Gif 2.32.1 | 1352 | Friday, July 9, 2021 | Approved | |
Screen To Gif 2.32.0 | 2348 | Sunday, June 20, 2021 | Approved | |
Screen To Gif 2.31.0 | 2453 | Wednesday, June 2, 2021 | Approved | |
Screen To Gif 2.30.1 | 1430 | Thursday, May 27, 2021 | Approved | |
Screen To Gif 2.30.0 | 2441 | Sunday, May 9, 2021 | Approved | |
Screen To Gif 2.29.1 | 1643 | Saturday, May 1, 2021 | Approved | |
Screen To Gif 2.29.0 | 683 | Friday, April 30, 2021 | Approved | |
Screen To Gif 2.28.2 | 1704 | Thursday, April 22, 2021 | Approved | |
Screen To Gif 2.28.1 | 310 | Wednesday, April 21, 2021 | Approved | |
Screen To Gif 2.28.0 | 377 | Wednesday, April 21, 2021 | Approved | |
Screen To Gif 2.27.3 | 10201 | Thursday, October 1, 2020 | Approved | |
Screen To Gif 2.27.2 | 1813 | Sunday, September 20, 2020 | Approved | |
Screen To Gif 2.27.1 | 1241 | Monday, September 14, 2020 | Approved | |
Screen To Gif 2.27.0 | 1295 | Tuesday, September 8, 2020 | Approved | |
Screen To Gif 2.26.1 | 4271 | Tuesday, July 7, 2020 | Approved | |
Screen To Gif 2.26.0 | 523 | Monday, July 6, 2020 | Approved | |
Screen To Gif 2.25.0 | 2858 | Sunday, June 7, 2020 | Approved | |
Screen To Gif 2.24.2 | 2651 | Sunday, May 17, 2020 | Approved | |
Screen To Gif 2.24.1 | 834 | Thursday, May 14, 2020 | Approved | |
Screen To Gif 2.24.0 | 1403 | Friday, May 8, 2020 | Approved | |
Screen To Gif 2.23.2 | 1506 | Thursday, April 30, 2020 | Approved | |
Screen To Gif 2.23.1 | 2566 | Friday, April 10, 2020 | Approved | |
Screen To Gif 2.23.0 | 885 | Wednesday, April 8, 2020 | Approved | |
Screen To Gif 2.22.1 | 3121 | Friday, March 13, 2020 | Approved | |
Screen To Gif 2.22.0 | 1700 | Tuesday, March 3, 2020 | Approved | |
Screen To Gif 2.21.2 | 1069 | Friday, February 28, 2020 | Approved | |
Screen To Gif 2.21.1 | 733 | Thursday, February 27, 2020 | Approved | |
Screen To Gif 2.21.0 | 580 | Tuesday, February 25, 2020 | Approved | |
Screen To Gif 2.20.4 | 943 | Saturday, February 22, 2020 | Approved | |
Screen To Gif 2.20.3 | 1887 | Wednesday, February 12, 2020 | Approved | |
Screen To Gif 2.20.2 | 888 | Monday, February 10, 2020 | Approved | |
Screen To Gif 2.20.1 | 1781 | Wednesday, January 29, 2020 | Approved | |
Screen To Gif 2.20.0 | 388 | Wednesday, January 29, 2020 | Approved | |
Screen To Gif 2.19.3 | 7437 | Saturday, October 26, 2019 | Approved | |
Screen To Gif 2.19.1 | 2619 | Tuesday, October 8, 2019 | Approved | |
Screen To Gif 2.19 | 379 | Monday, October 7, 2019 | Approved | |
Screen To Gif 2.18 | 8260 | Friday, July 19, 2019 | Approved | |
Screen To Gif 2.17.1 | 8538 | Saturday, April 20, 2019 | Approved | |
Screen To Gif 2.17 | 423 | Friday, April 19, 2019 | Approved | |
Screen To Gif 2.16 | 9208 | Friday, January 18, 2019 | Approved | |
Screen To Gif 2.15.2 | 670 | Friday, January 11, 2019 | Approved | |
Screen To Gif 2.15.1 | 926 | Friday, December 21, 2018 | Approved | |
Screen To Gif 2.14.1 | 2046 | Sunday, August 12, 2018 | Approved | |
Screen To Gif 2.13.3 | 1503 | Tuesday, May 15, 2018 | Approved | |
Screen To Gif 2.13.1 | 1027 | Monday, April 2, 2018 | Approved | |
Screen To Gif 2.13 | 570 | Monday, March 26, 2018 | Approved | |
Screen To Gif 2.12.1.180223 | 956 | Friday, February 23, 2018 | Approved | |
Screen To Gif 2.12.1 | 717 | Wednesday, February 21, 2018 | Approved | |
Screen To Gif 2.12 | 564 | Sunday, February 18, 2018 | Approved | |
Screen To Gif 2.11 | 1057 | Wednesday, January 10, 2018 | Approved | |
Screen To Gif 2.10 | 1268 | Thursday, October 19, 2017 | Approved | |
Screen To Gif 2.9 | 1214 | Saturday, August 12, 2017 | Approved | |
Screen To Gif 2.8.1 | 912 | Sunday, July 2, 2017 | Approved | |
Screen To Gif 2.8 | 627 | Tuesday, June 20, 2017 | Approved | |
Screen To Gif 2.7.3 | 671 | Saturday, May 27, 2017 | Approved | |
Screen To Gif 2.7.2 | 656 | Sunday, May 7, 2017 | Approved | |
Screen To Gif 2.7.1 | 661 | Friday, April 14, 2017 | Approved | |
Screen To Gif 2.7.0 | 648 | Wednesday, March 29, 2017 | Approved | |
Screen To Gif 2.6.0 | 612 | Sunday, March 12, 2017 | Approved | |
Screen To Gif 2.5.0 | 626 | Monday, February 20, 2017 | Approved | |
Screen To Gif 2.4.0.170115 | 623 | Sunday, January 15, 2017 | Approved | |
Screen To Gif 2.4 | 477 | Tuesday, January 10, 2017 | Approved | |
Screen To Gif 2.3.161201 | 592 | Friday, December 2, 2016 | Approved | |
Screen To Gif 2.3.161030 | 626 | Sunday, October 30, 2016 | Approved | |
Screen To Gif 2.3.2 | 416 | Tuesday, November 29, 2016 | Approved | |
Screen To Gif 2.3.1 | 474 | Sunday, November 27, 2016 | Approved | |
Screen To Gif 2.3 | 482 | Friday, October 28, 2016 | Approved | |
Screen To Gif 2.2.160907 | 671 | Wednesday, September 7, 2016 | Approved | |
Screen To Gif 2.2 | 458 | Wednesday, September 7, 2016 | Approved | |
Screen To Gif 2.1 | 521 | Saturday, August 6, 2016 | Approved | |
Screen To Gif 1.4.2 | 772 | Wednesday, May 11, 2016 | Approved | |
Screen To Gif 1.4.1.1 | 671 | Thursday, June 25, 2015 | Approved | |
Screen To Gif 1.4.1 | 799 | Wednesday, March 18, 2015 | Approved | |
Screen To Gif 1.3 | 770 | Tuesday, November 11, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Screen To Gif and the Screen To Gif package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Screen To Gif, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.