├── .vscode └── launch.json ├── LICENSE ├── README.md ├── best-practices.md ├── ch02 └── hello-world.ps1 ├── ch04 └── Initialize-PacktPs6CoreLinuxLab.ps1 ├── ch05 ├── 6.2-dotnetcore-obj.ps1 └── 6.6-CustomTypes.ps1xml ├── ch06 ├── 03-input-file-expanding.txt ├── 03-input-file.txt ├── 05-Get-TravelArticles.ps1 ├── 05-sitelist.csv ├── 06-puregfm.md ├── 06-rawcontent.txt ├── 07-input.csv ├── 07-split-input.ps1 ├── 08-details.txt └── 08-mailto.txt ├── ch07 ├── 02.1-Get-WeekDay-if-else.ps1 ├── 02.2-Get-Weekday-switch-case.ps1 ├── 03-Wait-BeforeDressCode.ps1 ├── 04-Write-Greetings.ps1 ├── 05-Write-GuestSeatDetails.csv ├── 05-Write-GuestSeatDetails.ps1 ├── 06-Write-GuestSeatDetails.ps1 ├── 07.1-Write-GuestSeatDetails.ps1 ├── 07.2-Find-MothersDay.ps1 ├── 08-Remove-EmptyDirectories.ps1 ├── 08-input-file.txt └── 09-Remove-EmptyDirectories.ps1 ├── ch08 ├── 01-Clear-LogFiles.ps1 ├── 01-Set-LastWriteTime.ps1 ├── 02-Clear-LogFiles.ps1 ├── 05-ConvertTo-Rgb.ps1 └── 06-ConvertTo-OtherBases.ps1 ├── ch09 ├── 01-New-MultiDimensionalArray.ps1 ├── 02-Convert-Name.ps1 ├── 02-names.txt ├── 03-Convert-SortedNames.ps1 ├── 04-Find-Name.ps1 ├── 05-Combine-Arrays.ps1 ├── 05-list-one.txt ├── 05-list-two.txt ├── 06-Search-ByLastname01.ps1 ├── 06-Search-ByLastname02.ps1 ├── 07-Clear-Paths01.ps1 ├── 07-Clear-Paths02.ps1 ├── 08-Compare-ServerName.ps1 ├── 08-server-names-01.txt ├── 08-server-names-02.txt ├── 09-New-MemoryList.ps1 └── 10-New-ProcessReport.ps1 ├── ch10 ├── 01-Get-FileDetails.ps1 ├── 01-random-text.txt ├── 02-Write-ContentOne.ps1 ├── 02-Write-ContentTwo.ps1 ├── 03-Modify-FileContent.ps1 ├── 04-Search-FileForPattern.ps1 ├── 05-Get-InvocationInformation.ps1 ├── 06-New-FilesAndDirectories.ps1 ├── 07-Get-FilteredFiles.ps1 ├── 08-Read-MdmLog.ps1 └── 08-mdm-reinstall-log.log ├── ch11 ├── 04-Start-Count.ps1 ├── 05-Start-Count.ps1 ├── 06-Start-Count.ps1 └── 07-Start-Count.ps1 ├── ch12 ├── 01-Start-Count.ps1 ├── 01-Start-CountFlexible.ps1 ├── 02-Start-Count.ps1 ├── 03-New-PersonalMessage.ps1 ├── 04-Start-Count.ps1 ├── 05-Start-Count.ps1 ├── 06-New-File.ps1 ├── 07-New-File.ps1 ├── 08-Start-Count.ps1 ├── 09-New-File.ps1 ├── 10-New-File.ps1 ├── 11-New-File.psm1 └── 12-New-File.psm1 ├── ch13 ├── 01-New-File.ps1 ├── 02-New-File.ps1 ├── 03-Set-Name.ps1 ├── 04-New-File.ps1 ├── 05-Set-Name.ps1 ├── 06-Find-Item.ps1 ├── 07-Find-Item.ps1 ├── 08-New-LogFile.ps1 └── 09-New-LogFile.ps1 ├── ch14 ├── 01-PoSH-Remote-Query.ps1 ├── 02-PoSH-Remote-Query-HTML.ps1 ├── 03-PoSH-Remote-Query-HTML-Mail.ps1 └── Input.CSV ├── ch15 └── SampleAzureRmVM.ps1 ├── ch16 ├── Install-SqlServer.ps1 ├── New-DataFormatExample.ps1 ├── New-GetProcessRepo.ps1 ├── New-MultiServerTsql.ps1 ├── New-TsqlQuery.ps1 └── program.cs ├── ch17 ├── PoSH-Find-DockerTags.ps1 └── PoSH-Setup-Docker.ps1 ├── cheatsheets ├── chapter-01.md ├── chapter-02.md ├── chapter-03.md ├── chapter-04.md ├── chapter-05.md ├── chapter-06.md ├── chapter-07.md ├── chapter-08.md ├── chapter-09.md ├── chapter-10.md ├── chapter-11.md ├── chapter-12.md └── chapter-13.md └── miscellaneous └── Microsoft.VSCode_profile.ps1 /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/README.md -------------------------------------------------------------------------------- /best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/best-practices.md -------------------------------------------------------------------------------- /ch02/hello-world.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello, World!" 2 | $Message = "I was dot-sourced!" -------------------------------------------------------------------------------- /ch04/Initialize-PacktPs6CoreLinuxLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch04/Initialize-PacktPs6CoreLinuxLab.ps1 -------------------------------------------------------------------------------- /ch05/6.2-dotnetcore-obj.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch05/6.2-dotnetcore-obj.ps1 -------------------------------------------------------------------------------- /ch05/6.6-CustomTypes.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch05/6.6-CustomTypes.ps1xml -------------------------------------------------------------------------------- /ch06/03-input-file-expanding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/03-input-file-expanding.txt -------------------------------------------------------------------------------- /ch06/03-input-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/03-input-file.txt -------------------------------------------------------------------------------- /ch06/05-Get-TravelArticles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/05-Get-TravelArticles.ps1 -------------------------------------------------------------------------------- /ch06/05-sitelist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/05-sitelist.csv -------------------------------------------------------------------------------- /ch06/06-puregfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/06-puregfm.md -------------------------------------------------------------------------------- /ch06/06-rawcontent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/06-rawcontent.txt -------------------------------------------------------------------------------- /ch06/07-input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/07-input.csv -------------------------------------------------------------------------------- /ch06/07-split-input.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/07-split-input.ps1 -------------------------------------------------------------------------------- /ch06/08-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/08-details.txt -------------------------------------------------------------------------------- /ch06/08-mailto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch06/08-mailto.txt -------------------------------------------------------------------------------- /ch07/02.1-Get-WeekDay-if-else.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/02.1-Get-WeekDay-if-else.ps1 -------------------------------------------------------------------------------- /ch07/02.2-Get-Weekday-switch-case.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/02.2-Get-Weekday-switch-case.ps1 -------------------------------------------------------------------------------- /ch07/03-Wait-BeforeDressCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/03-Wait-BeforeDressCode.ps1 -------------------------------------------------------------------------------- /ch07/04-Write-Greetings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/04-Write-Greetings.ps1 -------------------------------------------------------------------------------- /ch07/05-Write-GuestSeatDetails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/05-Write-GuestSeatDetails.csv -------------------------------------------------------------------------------- /ch07/05-Write-GuestSeatDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/05-Write-GuestSeatDetails.ps1 -------------------------------------------------------------------------------- /ch07/06-Write-GuestSeatDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/06-Write-GuestSeatDetails.ps1 -------------------------------------------------------------------------------- /ch07/07.1-Write-GuestSeatDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/07.1-Write-GuestSeatDetails.ps1 -------------------------------------------------------------------------------- /ch07/07.2-Find-MothersDay.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/07.2-Find-MothersDay.ps1 -------------------------------------------------------------------------------- /ch07/08-Remove-EmptyDirectories.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/08-Remove-EmptyDirectories.ps1 -------------------------------------------------------------------------------- /ch07/08-input-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/08-input-file.txt -------------------------------------------------------------------------------- /ch07/09-Remove-EmptyDirectories.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch07/09-Remove-EmptyDirectories.ps1 -------------------------------------------------------------------------------- /ch08/01-Clear-LogFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch08/01-Clear-LogFiles.ps1 -------------------------------------------------------------------------------- /ch08/01-Set-LastWriteTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch08/01-Set-LastWriteTime.ps1 -------------------------------------------------------------------------------- /ch08/02-Clear-LogFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch08/02-Clear-LogFiles.ps1 -------------------------------------------------------------------------------- /ch08/05-ConvertTo-Rgb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch08/05-ConvertTo-Rgb.ps1 -------------------------------------------------------------------------------- /ch08/06-ConvertTo-OtherBases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch08/06-ConvertTo-OtherBases.ps1 -------------------------------------------------------------------------------- /ch09/01-New-MultiDimensionalArray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/01-New-MultiDimensionalArray.ps1 -------------------------------------------------------------------------------- /ch09/02-Convert-Name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/02-Convert-Name.ps1 -------------------------------------------------------------------------------- /ch09/02-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/02-names.txt -------------------------------------------------------------------------------- /ch09/03-Convert-SortedNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/03-Convert-SortedNames.ps1 -------------------------------------------------------------------------------- /ch09/04-Find-Name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/04-Find-Name.ps1 -------------------------------------------------------------------------------- /ch09/05-Combine-Arrays.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/05-Combine-Arrays.ps1 -------------------------------------------------------------------------------- /ch09/05-list-one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/05-list-one.txt -------------------------------------------------------------------------------- /ch09/05-list-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/05-list-two.txt -------------------------------------------------------------------------------- /ch09/06-Search-ByLastname01.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/06-Search-ByLastname01.ps1 -------------------------------------------------------------------------------- /ch09/06-Search-ByLastname02.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/06-Search-ByLastname02.ps1 -------------------------------------------------------------------------------- /ch09/07-Clear-Paths01.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/07-Clear-Paths01.ps1 -------------------------------------------------------------------------------- /ch09/07-Clear-Paths02.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/07-Clear-Paths02.ps1 -------------------------------------------------------------------------------- /ch09/08-Compare-ServerName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/08-Compare-ServerName.ps1 -------------------------------------------------------------------------------- /ch09/08-server-names-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/08-server-names-01.txt -------------------------------------------------------------------------------- /ch09/08-server-names-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/08-server-names-02.txt -------------------------------------------------------------------------------- /ch09/09-New-MemoryList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/09-New-MemoryList.ps1 -------------------------------------------------------------------------------- /ch09/10-New-ProcessReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch09/10-New-ProcessReport.ps1 -------------------------------------------------------------------------------- /ch10/01-Get-FileDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/01-Get-FileDetails.ps1 -------------------------------------------------------------------------------- /ch10/01-random-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/01-random-text.txt -------------------------------------------------------------------------------- /ch10/02-Write-ContentOne.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/02-Write-ContentOne.ps1 -------------------------------------------------------------------------------- /ch10/02-Write-ContentTwo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/02-Write-ContentTwo.ps1 -------------------------------------------------------------------------------- /ch10/03-Modify-FileContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/03-Modify-FileContent.ps1 -------------------------------------------------------------------------------- /ch10/04-Search-FileForPattern.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/04-Search-FileForPattern.ps1 -------------------------------------------------------------------------------- /ch10/05-Get-InvocationInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/05-Get-InvocationInformation.ps1 -------------------------------------------------------------------------------- /ch10/06-New-FilesAndDirectories.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/06-New-FilesAndDirectories.ps1 -------------------------------------------------------------------------------- /ch10/07-Get-FilteredFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/07-Get-FilteredFiles.ps1 -------------------------------------------------------------------------------- /ch10/08-Read-MdmLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/08-Read-MdmLog.ps1 -------------------------------------------------------------------------------- /ch10/08-mdm-reinstall-log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch10/08-mdm-reinstall-log.log -------------------------------------------------------------------------------- /ch11/04-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch11/04-Start-Count.ps1 -------------------------------------------------------------------------------- /ch11/05-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch11/05-Start-Count.ps1 -------------------------------------------------------------------------------- /ch11/06-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch11/06-Start-Count.ps1 -------------------------------------------------------------------------------- /ch11/07-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch11/07-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/01-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/01-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/01-Start-CountFlexible.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/01-Start-CountFlexible.ps1 -------------------------------------------------------------------------------- /ch12/02-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/02-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/03-New-PersonalMessage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/03-New-PersonalMessage.ps1 -------------------------------------------------------------------------------- /ch12/04-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/04-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/05-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/05-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/06-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/06-New-File.ps1 -------------------------------------------------------------------------------- /ch12/07-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/07-New-File.ps1 -------------------------------------------------------------------------------- /ch12/08-Start-Count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/08-Start-Count.ps1 -------------------------------------------------------------------------------- /ch12/09-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/09-New-File.ps1 -------------------------------------------------------------------------------- /ch12/10-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/10-New-File.ps1 -------------------------------------------------------------------------------- /ch12/11-New-File.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/11-New-File.psm1 -------------------------------------------------------------------------------- /ch12/12-New-File.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch12/12-New-File.psm1 -------------------------------------------------------------------------------- /ch13/01-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/01-New-File.ps1 -------------------------------------------------------------------------------- /ch13/02-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/02-New-File.ps1 -------------------------------------------------------------------------------- /ch13/03-Set-Name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/03-Set-Name.ps1 -------------------------------------------------------------------------------- /ch13/04-New-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/04-New-File.ps1 -------------------------------------------------------------------------------- /ch13/05-Set-Name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/05-Set-Name.ps1 -------------------------------------------------------------------------------- /ch13/06-Find-Item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/06-Find-Item.ps1 -------------------------------------------------------------------------------- /ch13/07-Find-Item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/07-Find-Item.ps1 -------------------------------------------------------------------------------- /ch13/08-New-LogFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/08-New-LogFile.ps1 -------------------------------------------------------------------------------- /ch13/09-New-LogFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch13/09-New-LogFile.ps1 -------------------------------------------------------------------------------- /ch14/01-PoSH-Remote-Query.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch14/01-PoSH-Remote-Query.ps1 -------------------------------------------------------------------------------- /ch14/02-PoSH-Remote-Query-HTML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch14/02-PoSH-Remote-Query-HTML.ps1 -------------------------------------------------------------------------------- /ch14/03-PoSH-Remote-Query-HTML-Mail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch14/03-PoSH-Remote-Query-HTML-Mail.ps1 -------------------------------------------------------------------------------- /ch14/Input.CSV: -------------------------------------------------------------------------------- 1 | Server,user 2 | hfd01,ssh-test 3 | 10.2.6.68,prashant 4 | -------------------------------------------------------------------------------- /ch15/SampleAzureRmVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch15/SampleAzureRmVM.ps1 -------------------------------------------------------------------------------- /ch16/Install-SqlServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/Install-SqlServer.ps1 -------------------------------------------------------------------------------- /ch16/New-DataFormatExample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/New-DataFormatExample.ps1 -------------------------------------------------------------------------------- /ch16/New-GetProcessRepo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/New-GetProcessRepo.ps1 -------------------------------------------------------------------------------- /ch16/New-MultiServerTsql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/New-MultiServerTsql.ps1 -------------------------------------------------------------------------------- /ch16/New-TsqlQuery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/New-TsqlQuery.ps1 -------------------------------------------------------------------------------- /ch16/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch16/program.cs -------------------------------------------------------------------------------- /ch17/PoSH-Find-DockerTags.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch17/PoSH-Find-DockerTags.ps1 -------------------------------------------------------------------------------- /ch17/PoSH-Setup-Docker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/ch17/PoSH-Setup-Docker.ps1 -------------------------------------------------------------------------------- /cheatsheets/chapter-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-01.md -------------------------------------------------------------------------------- /cheatsheets/chapter-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-02.md -------------------------------------------------------------------------------- /cheatsheets/chapter-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-03.md -------------------------------------------------------------------------------- /cheatsheets/chapter-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-04.md -------------------------------------------------------------------------------- /cheatsheets/chapter-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-05.md -------------------------------------------------------------------------------- /cheatsheets/chapter-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-06.md -------------------------------------------------------------------------------- /cheatsheets/chapter-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-07.md -------------------------------------------------------------------------------- /cheatsheets/chapter-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-08.md -------------------------------------------------------------------------------- /cheatsheets/chapter-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-09.md -------------------------------------------------------------------------------- /cheatsheets/chapter-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-10.md -------------------------------------------------------------------------------- /cheatsheets/chapter-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-11.md -------------------------------------------------------------------------------- /cheatsheets/chapter-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-12.md -------------------------------------------------------------------------------- /cheatsheets/chapter-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/cheatsheets/chapter-13.md -------------------------------------------------------------------------------- /miscellaneous/Microsoft.VSCode_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PowerShell-Core-Linux-Administrators-Cookbook/HEAD/miscellaneous/Microsoft.VSCode_profile.ps1 --------------------------------------------------------------------------------