Skip to content

Instantly share code, notes, and snippets.

View i4004's full-sized avatar
👨‍🔬
Programming

Alexanderius i4004

👨‍🔬
Programming
View GitHub Profile
@i4004
i4004 / LaunchJiraTimers.ps1
Created April 6, 2021 10:01
Launch JiraTimers from setup with home drive override
# Homedrive fix
$env:HOMEDRIVE = "C:\"
$programPath = $DesktopPath = [Environment]::GetFolderPath("Desktop") + "\JiraTimers.lnk"
& $programPath
@i4004
i4004 / LaunchJiraTimers.ps1
Last active April 6, 2021 10:01
Launch JiraTimers from chocolatey with home drive override
# Homedrive fix
$env:HOMEDRIVE = "C:\"
$programPath = $env:USERPROFILE + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\JiraTimers.lnk"
& $programPath
@i4004
i4004 / PushNugetSymbolsPackages.ps1
Last active October 7, 2020 15:00
Publish NuGet symbols packages
$packagesPath = "D:\\Downloads\\*.snupkg"
nuget push $packagesPath -Source https://api.nuget.org/v3/index.json
if ($LastExitCode -ne 0)
{
exit $LastExitCode
}
Remove-Item $packagesPath