├── .gitattributes ├── .gitignore ├── Changelog.md ├── ISEScriptingGeek.psd1 ├── ISEScriptingGeek.psm1 ├── License.txt ├── README.md ├── Themes ├── Grayscale.StorableColorTheme.ps1xml ├── Monochrome Yellow.StorableColorTheme.ps1xml └── VIM.StorableColorTheme.ps1xml ├── docs ├── Add-CurrentProject.md ├── Add-ISEBookmark.md ├── CloseAllFiles.md ├── CloseAllFilesButCurrent.md ├── Convert-AliasDefinition.md ├── Convert-CodetoSnippet.md ├── Convert-CommandtoHash.md ├── ConvertFrom-Alias.md ├── ConvertFrom-MultiLineComment.md ├── ConvertTo-CommentHelp.md ├── ConvertTo-Definition.md ├── ConvertTo-MultiLineComment.md ├── ConvertTo-TextFile.md ├── Copy-ToWord.md ├── Edit-CurrentProject.md ├── Edit-Snippet.md ├── Find-InFile.md ├── Get-ASTProfile.md ├── Get-CommandMetadata.md ├── Get-ISEBookmark.md ├── Get-NextISETab.md ├── Get-ScriptComments.md ├── Get-ScriptingHelp.md ├── Get-SearchResult.md ├── Import-CurrentProject.md ├── New-CIMCommand.md ├── New-CommentHelp.md ├── New-DSCResourceSnippet.md ├── New-FileHere.md ├── New-Function.md ├── New-Inputbox.md ├── New-PSCommand.md ├── Open-ISEBookmark.md ├── Open-SelectedISE.md ├── Out-ISETab.md ├── Remove-ISEBookmark.md ├── Reset-ISEFile.md ├── Send-ToPrinter.md ├── Set-ScriptLocation.md ├── Start-MyScript.md ├── Update-ISEBookmark.md └── Write-Signature.md ├── en-us ├── ISEScriptingGeek-help.xml ├── about_ScriptingHelp.help.txt ├── about_Scripting_Best_Practices.help.txt ├── about_Scripting_Try_Catch.help.txt ├── about_Scripting_ValidateCount.help.txt ├── about_Scripting_ValidateLength.help.txt ├── about_Scripting_ValidateNotNullorEmpty.help.txt ├── about_Scripting_ValidatePattern.help.txt ├── about_Scripting_ValidateRange.help.txt ├── about_Scripting_ValidateScript.help.txt └── about_Scripting_ValidateSet.help.txt ├── functions ├── Bookmarks.ps1 ├── CIMScriptMaker.ps1 ├── CloseAllFiles.ps1 ├── Convert-AliasDefinition.ps1 ├── Convert-CodetoSnippet.ps1 ├── Convert-CommandToHash.ps1 ├── Convert-ISEComment.ps1 ├── ConvertAll.ps1 ├── ConvertFrom-Alias.ps1 ├── ConvertTo-CommentHelp.ps1 ├── ConvertTo-TextFile.ps1 ├── Copy-ToWord.ps1 ├── CurrentProjects.ps1 ├── CycleISETabs.ps1 ├── Edit-Snippet.ps1 ├── Find-InFile.ps1 ├── Get-ASTScriptProfile.ps1 ├── Get-ScriptComments.ps1 ├── Get-SearchResult.ps1 ├── New-CommentHelp.ps1 ├── New-DSCResourceSnippet.ps1 ├── New-FileHere.ps1 ├── New-ISEFunction.ps1 ├── New-InputBox.ps1 ├── New-PSCommand.ps1 ├── Open-SelectedInISE.ps1 ├── Out-ISETab.ps1 ├── Print-ISEFile.ps1 ├── Reload-ISEFile.ps1 ├── Sign-ISEScript.ps1 └── get-commandmetadata.ps1 └── images ├── addons-menu.png ├── convert-menu.png ├── datetime-menu.png └── files-menu.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/Changelog.md -------------------------------------------------------------------------------- /ISEScriptingGeek.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/ISEScriptingGeek.psd1 -------------------------------------------------------------------------------- /ISEScriptingGeek.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/ISEScriptingGeek.psm1 -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/README.md -------------------------------------------------------------------------------- /Themes/Grayscale.StorableColorTheme.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/Themes/Grayscale.StorableColorTheme.ps1xml -------------------------------------------------------------------------------- /Themes/Monochrome Yellow.StorableColorTheme.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/Themes/Monochrome Yellow.StorableColorTheme.ps1xml -------------------------------------------------------------------------------- /Themes/VIM.StorableColorTheme.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/Themes/VIM.StorableColorTheme.ps1xml -------------------------------------------------------------------------------- /docs/Add-CurrentProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Add-CurrentProject.md -------------------------------------------------------------------------------- /docs/Add-ISEBookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Add-ISEBookmark.md -------------------------------------------------------------------------------- /docs/CloseAllFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/CloseAllFiles.md -------------------------------------------------------------------------------- /docs/CloseAllFilesButCurrent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/CloseAllFilesButCurrent.md -------------------------------------------------------------------------------- /docs/Convert-AliasDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Convert-AliasDefinition.md -------------------------------------------------------------------------------- /docs/Convert-CodetoSnippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Convert-CodetoSnippet.md -------------------------------------------------------------------------------- /docs/Convert-CommandtoHash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Convert-CommandtoHash.md -------------------------------------------------------------------------------- /docs/ConvertFrom-Alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertFrom-Alias.md -------------------------------------------------------------------------------- /docs/ConvertFrom-MultiLineComment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertFrom-MultiLineComment.md -------------------------------------------------------------------------------- /docs/ConvertTo-CommentHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertTo-CommentHelp.md -------------------------------------------------------------------------------- /docs/ConvertTo-Definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertTo-Definition.md -------------------------------------------------------------------------------- /docs/ConvertTo-MultiLineComment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertTo-MultiLineComment.md -------------------------------------------------------------------------------- /docs/ConvertTo-TextFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/ConvertTo-TextFile.md -------------------------------------------------------------------------------- /docs/Copy-ToWord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Copy-ToWord.md -------------------------------------------------------------------------------- /docs/Edit-CurrentProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Edit-CurrentProject.md -------------------------------------------------------------------------------- /docs/Edit-Snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Edit-Snippet.md -------------------------------------------------------------------------------- /docs/Find-InFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Find-InFile.md -------------------------------------------------------------------------------- /docs/Get-ASTProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-ASTProfile.md -------------------------------------------------------------------------------- /docs/Get-CommandMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-CommandMetadata.md -------------------------------------------------------------------------------- /docs/Get-ISEBookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-ISEBookmark.md -------------------------------------------------------------------------------- /docs/Get-NextISETab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-NextISETab.md -------------------------------------------------------------------------------- /docs/Get-ScriptComments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-ScriptComments.md -------------------------------------------------------------------------------- /docs/Get-ScriptingHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-ScriptingHelp.md -------------------------------------------------------------------------------- /docs/Get-SearchResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Get-SearchResult.md -------------------------------------------------------------------------------- /docs/Import-CurrentProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Import-CurrentProject.md -------------------------------------------------------------------------------- /docs/New-CIMCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-CIMCommand.md -------------------------------------------------------------------------------- /docs/New-CommentHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-CommentHelp.md -------------------------------------------------------------------------------- /docs/New-DSCResourceSnippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-DSCResourceSnippet.md -------------------------------------------------------------------------------- /docs/New-FileHere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-FileHere.md -------------------------------------------------------------------------------- /docs/New-Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-Function.md -------------------------------------------------------------------------------- /docs/New-Inputbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-Inputbox.md -------------------------------------------------------------------------------- /docs/New-PSCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/New-PSCommand.md -------------------------------------------------------------------------------- /docs/Open-ISEBookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Open-ISEBookmark.md -------------------------------------------------------------------------------- /docs/Open-SelectedISE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Open-SelectedISE.md -------------------------------------------------------------------------------- /docs/Out-ISETab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Out-ISETab.md -------------------------------------------------------------------------------- /docs/Remove-ISEBookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Remove-ISEBookmark.md -------------------------------------------------------------------------------- /docs/Reset-ISEFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Reset-ISEFile.md -------------------------------------------------------------------------------- /docs/Send-ToPrinter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Send-ToPrinter.md -------------------------------------------------------------------------------- /docs/Set-ScriptLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Set-ScriptLocation.md -------------------------------------------------------------------------------- /docs/Start-MyScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Start-MyScript.md -------------------------------------------------------------------------------- /docs/Update-ISEBookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Update-ISEBookmark.md -------------------------------------------------------------------------------- /docs/Write-Signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/docs/Write-Signature.md -------------------------------------------------------------------------------- /en-us/ISEScriptingGeek-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/ISEScriptingGeek-help.xml -------------------------------------------------------------------------------- /en-us/about_ScriptingHelp.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_ScriptingHelp.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_Best_Practices.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_Best_Practices.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_Try_Catch.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_Try_Catch.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateCount.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateCount.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateLength.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateLength.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateNotNullorEmpty.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateNotNullorEmpty.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidatePattern.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidatePattern.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateRange.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateRange.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateScript.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateScript.help.txt -------------------------------------------------------------------------------- /en-us/about_Scripting_ValidateSet.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/en-us/about_Scripting_ValidateSet.help.txt -------------------------------------------------------------------------------- /functions/Bookmarks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Bookmarks.ps1 -------------------------------------------------------------------------------- /functions/CIMScriptMaker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/CIMScriptMaker.ps1 -------------------------------------------------------------------------------- /functions/CloseAllFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/CloseAllFiles.ps1 -------------------------------------------------------------------------------- /functions/Convert-AliasDefinition.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Convert-AliasDefinition.ps1 -------------------------------------------------------------------------------- /functions/Convert-CodetoSnippet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Convert-CodetoSnippet.ps1 -------------------------------------------------------------------------------- /functions/Convert-CommandToHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Convert-CommandToHash.ps1 -------------------------------------------------------------------------------- /functions/Convert-ISEComment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Convert-ISEComment.ps1 -------------------------------------------------------------------------------- /functions/ConvertAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/ConvertAll.ps1 -------------------------------------------------------------------------------- /functions/ConvertFrom-Alias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/ConvertFrom-Alias.ps1 -------------------------------------------------------------------------------- /functions/ConvertTo-CommentHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/ConvertTo-CommentHelp.ps1 -------------------------------------------------------------------------------- /functions/ConvertTo-TextFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/ConvertTo-TextFile.ps1 -------------------------------------------------------------------------------- /functions/Copy-ToWord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Copy-ToWord.ps1 -------------------------------------------------------------------------------- /functions/CurrentProjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/CurrentProjects.ps1 -------------------------------------------------------------------------------- /functions/CycleISETabs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/CycleISETabs.ps1 -------------------------------------------------------------------------------- /functions/Edit-Snippet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Edit-Snippet.ps1 -------------------------------------------------------------------------------- /functions/Find-InFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Find-InFile.ps1 -------------------------------------------------------------------------------- /functions/Get-ASTScriptProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Get-ASTScriptProfile.ps1 -------------------------------------------------------------------------------- /functions/Get-ScriptComments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Get-ScriptComments.ps1 -------------------------------------------------------------------------------- /functions/Get-SearchResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Get-SearchResult.ps1 -------------------------------------------------------------------------------- /functions/New-CommentHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-CommentHelp.ps1 -------------------------------------------------------------------------------- /functions/New-DSCResourceSnippet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-DSCResourceSnippet.ps1 -------------------------------------------------------------------------------- /functions/New-FileHere.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-FileHere.ps1 -------------------------------------------------------------------------------- /functions/New-ISEFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-ISEFunction.ps1 -------------------------------------------------------------------------------- /functions/New-InputBox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-InputBox.ps1 -------------------------------------------------------------------------------- /functions/New-PSCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/New-PSCommand.ps1 -------------------------------------------------------------------------------- /functions/Open-SelectedInISE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Open-SelectedInISE.ps1 -------------------------------------------------------------------------------- /functions/Out-ISETab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Out-ISETab.ps1 -------------------------------------------------------------------------------- /functions/Print-ISEFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Print-ISEFile.ps1 -------------------------------------------------------------------------------- /functions/Reload-ISEFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Reload-ISEFile.ps1 -------------------------------------------------------------------------------- /functions/Sign-ISEScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/Sign-ISEScript.ps1 -------------------------------------------------------------------------------- /functions/get-commandmetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/functions/get-commandmetadata.ps1 -------------------------------------------------------------------------------- /images/addons-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/images/addons-menu.png -------------------------------------------------------------------------------- /images/convert-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/images/convert-menu.png -------------------------------------------------------------------------------- /images/datetime-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/images/datetime-menu.png -------------------------------------------------------------------------------- /images/files-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/ISEScriptingGeek/HEAD/images/files-menu.png --------------------------------------------------------------------------------