面白い記事を見つけたのでインストールしてみました。
Linuxで動作するMicrosoft PowerShellです。
Microsoft´s PowerShell for Linux Now Supports Apt-Get and Yum Installations
https://winbuzzer.com/2017/02/02/microsofts-powershell-linux-now-supports-apt-get-yum-installations-xcxwbn/
yumでインストールできるとのことで早々に試してみました。
【検証環境】
・CentOS Linux release 7.3.1611 (Core)
・kernel:3.10.0-514.6.1.el7.x86_64
- repositoryファイルの作成
- キーのインストール
- パッケージ情報
- powershellインストール
- 実行
PowerShellのパッケージサイトは下記になります。
https://packages.microsoft.com/
1 2 3 4 5 |
# vi /etc/yum.repos.d/microsoft.repo # cat /etc/yum.repos.d/microsoft.repo [microsoft] name=Microsoft repo baseurl=https://packages.microsoft.com/yumrepos/microsoft-rhel7-prod/ |
1 |
# rpm --import https://packages.microsoft.com/keys/microsoft.asc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 |
# yum --enablerepo=microsoft info powershell Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.tsukuba.wide.ad.jp * epel: mirror.premi.st * extras: ftp.tsukuba.wide.ad.jp * updates: ftp.iij.ad.jp Available Packages Name : powershell Arch : x86_64 Version : 6.0.0_alpha.15 Release : 1.el7.centos Size : 39 M Repo : microsoft Summary : PowerShell is an automation and configuration management platform. URL : https://microsoft.com/powershell License : MIT License Description : PowerShell is an automation and configuration management platform. : It consists of a cross-platform command-line shell and associated scripting language. # repoquery --list powershell /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.CSharp.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.CodeAnalysis.CSharp.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.CodeAnalysis.VisualBasic.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.CodeAnalysis.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.Management.Infrastructure.Native.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.Management.Infrastructure.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Commands.Management.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Commands.Management.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Commands.Utility.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Commands.Utility.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.ConsoleHost.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.ConsoleHost.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.CoreCLR.Eventing.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.CoreCLR.Eventing.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.PSReadLine.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.PSReadLine.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Security.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.PowerShell.Security.xml /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.VisualBasic.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.Win32.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.Win32.Registry.AccessControl.dll /opt/microsoft/powershell/6.0.0-alpha.15/Microsoft.Win32.Registry.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Archive/ArchiveResources.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Archive/Microsoft.PowerShell.Archive.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Archive/Microsoft.PowerShell.Archive.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Archive/en-US/Microsoft.PowerShell.Archive.psm1-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PSDesiredStateConfiguration/PSDesiredStateConfiguration.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PSReadLine/PSReadLine.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PSReadLine/PSReadLine.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/PackageManagement.format.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/PackageManagement.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/PackageManagement.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/PackageProviderFunctions.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.ArchiverProviders.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.ArchiverProviders.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.CoreProviders.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.CoreProviders.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.MetaProvider.PowerShell.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.NuGetProvider.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.NuGetProvider.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PackageManagement.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PowerShell.PackageManagement.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/coreclr/Microsoft.PowerShell.PackageManagement.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.ArchiverProviders.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.ArchiverProviders.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.CoreProviders.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.CoreProviders.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MsiProvider.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MsiProvider.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MsuProvider.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.MsuProvider.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.NuGetProvider.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.NuGetProvider.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PackageManagement.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PowerShell.PackageManagement.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PackageManagement/1.1.2.0/fullclr/Microsoft.PowerShell.PackageManagement.pdb /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/.travis.yml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Build.bat /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/CHANGELOG.md /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Examples/Calculator/Add-Numbers.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Examples/Calculator/Add-Numbers.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Examples/Validator/Validator.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Be.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Be.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeGreaterThan.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeGreaterThan.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeLessThan.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeLessThan.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeNullOrEmpty.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeNullOrEmpty.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeOfType.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/BeOfType.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Contain.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Contain.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/ContainExactly.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/ContainExactly.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Exist.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Exist.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Match.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Match.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/MatchExactly.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/MatchExactly.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/PesterThrow.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/PesterThrow.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Should.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Should.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Assertions/Test-Assertion.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/BreakAndContinue.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Context.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Context.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Coverage.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Coverage.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Describe.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Describe.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/GlobalMock-A.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/GlobalMock-B.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/In.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/In.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/InModuleScope.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/InModuleScope.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/It.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/It.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Mock.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/Mock.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/New-Fixture.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/New-Fixture.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/PesterState.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/PesterState.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/SetupTeardown.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/SetupTeardown.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/TestDrive.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/TestDrive.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/TestResults.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/TestResults.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Functions/TestsRunningInCleanRunspace.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/LICENSE /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Pester.Tests.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Pester.nuspec /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Pester.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Pester.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/README.md /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/Context.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/Describe.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/It.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldBe.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldBeGreaterThan.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldBeLessThan.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldBeNullOrEmpty.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldContain.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldExist.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldMatch.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotBe.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotBeNullOrEmpty.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotContain.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotExist.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotMatch.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldNotThrow.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/Snippets/ShouldThrow.snippets.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/appveyor.yml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/bin/pester.bat /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/build.psake.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/chocolateyInstall.ps1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/download.sh /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/en-US/about_BeforeEach_AfterEach.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/en-US/about_Mocking.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/en-US/about_Pester.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/en-US/about_TestDrive.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/en-US/about_should.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/nunit_schema_2.5.xsd /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/packages.config /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/NuGet.exe /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Etc/PackageProviderFunctions.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.MetaProvider.PowerShell.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.PackageProvider.Bootstrap.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.ServicesProvider.Common.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.Utility.PowerShell.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.Utility.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.OneGet.exe /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/Microsoft.PowerShell.OneGet.dll /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/OneGet.format.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/OneGet.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/OneGet/OneGet_4ae9fd46-338a-459c-8186-07f910774cb8_HelpInfo.xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/PSGet.Format.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/PSGet.Resource.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/PSGet.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/PowerShellGet.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/PowerShellGet_1d73a601-4a6c-43c5-ba3f-619b18bbb404_HelpInfo.xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/en-US/PSGet.Resource.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/Pester/vendor/tools/PowerShellGet/en-US/PSGet.psm1-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/PSGet.Format.ps1xml /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/PSGet.Resource.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/PSModule.psm1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/PowerShellGet.cat /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/PowerShellGet.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Modules/PowerShellGet/1.1.2.0/en-US/PSGet.Resource.psd1 /opt/microsoft/powershell/6.0.0-alpha.15/Newtonsoft.Json.dll /opt/microsoft/powershell/6.0.0-alpha.15/SOS.NETCore.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.AppContext.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Buffers.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Collections.Concurrent.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Collections.Immutable.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Collections.NonGeneric.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Collections.Specialized.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Collections.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.Annotations.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.DataAnnotations.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.EventBasedAsync.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.TypeConverter.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ComponentModel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Console.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Core.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Data.Common.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Data.SqlClient.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.Contracts.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.Debug.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.DiagnosticSource.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.FileVersionInfo.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.Process.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.StackTrace.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.TextWriterTraceListener.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.Tools.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.TraceSource.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Diagnostics.Tracing.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Dynamic.Runtime.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Globalization.Calendars.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Globalization.Extensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Globalization.Native.so /opt/microsoft/powershell/6.0.0-alpha.15/System.Globalization.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.Compression.Native.so /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.Compression.ZipFile.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.Compression.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.FileSystem.AccessControl.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.FileSystem.DriveInfo.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.FileSystem.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.FileSystem.Watcher.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.FileSystem.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.MemoryMappedFiles.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.Packaging.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.Pipes.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.UnmanagedMemoryStream.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.IO.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Linq.Expressions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Linq.Parallel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Linq.Queryable.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Linq.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Management.Automation.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Management.Automation.xml /opt/microsoft/powershell/6.0.0-alpha.15/System.Native.a /opt/microsoft/powershell/6.0.0-alpha.15/System.Native.so /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Http.Native.so /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Http.WinHttpHandler.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Http.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.NameResolution.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.NetworkInformation.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Ping.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Requests.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Security.Native.so /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Security.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.Sockets.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.WebHeaderCollection.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.WebSockets.Client.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.WebSockets.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Net.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Numerics.Vectors.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Numerics.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ObjectModel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Private.CoreLib.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Private.CoreLib.ni.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Private.DataContractSerialization.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Private.ServiceModel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Private.Uri.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.DispatchProxy.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Emit.ILGeneration.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Emit.Lightweight.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Emit.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Extensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Metadata.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.TypeExtensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Reflection.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Resources.Reader.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Resources.ResourceManager.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.CompilerServices.VisualC.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Extensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Handles.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.InteropServices.RuntimeInformation.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.InteropServices.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Loader.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Numerics.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Serialization.Json.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Serialization.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Serialization.Xml.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.Serialization.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Runtime.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.AccessControl.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Claims.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Algorithms.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Cng.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Csp.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Encoding.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Native.OpenSsl.so /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.OpenSsl.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Pkcs.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Cryptography.X509Certificates.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Principal.Windows.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.Principal.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Security.SecureString.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.Duplex.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.Http.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.NetTcp.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.Primitives.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.Security.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.Web.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceModel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.ServiceProcess.ServiceController.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Text.Encoding.CodePages.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Text.Encoding.Extensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Text.Encoding.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Text.Encodings.Web.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Text.RegularExpressions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.AccessControl.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Overlapped.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Tasks.Dataflow.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Tasks.Extensions.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Tasks.Parallel.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Tasks.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Thread.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.ThreadPool.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.Timer.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Threading.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Windows.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.Linq.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.ReaderWriter.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.Serialization.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XDocument.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XPath.XDocument.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XPath.XmlDocument.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XPath.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XmlDocument.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.XmlSerializer.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.Xml.dll /opt/microsoft/powershell/6.0.0-alpha.15/System.dll /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.PowerShell.Commands.Management.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.PowerShell.Commands.Utility.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.PowerShell.ConsoleHost.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.PowerShell.Security.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.PowerShell.Utility.psm1-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/Microsoft.Powershell.Management.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/System.Management.Automation.dll-help.xml /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Aliases.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Arithmetic_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Arrays.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Assignment_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Automatic_Variables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Break.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Classes.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Command_Precedence.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Command_Syntax.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Comment_Based_Help.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_CommonParameters.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Comparison_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Continue.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Core_Commands.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Data_Sections.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Debuggers.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_DesiredStateConfiguration.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Do.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Environment_Variables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Escape_Characters.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Eventlogs.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Execution_Policies.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_For.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_ForEach.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Format.ps1xml.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions_Advanced.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions_Advanced_Methods.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions_Advanced_Parameters.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions_CmdletBindingAttribute.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Functions_OutputTypeAttribute.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Group_Policy_Settings.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Hash_Tables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Hidden.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_History.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_If.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Job_Details.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Jobs.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Join.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Language_Keywords.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Language_Modes.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Line_Editing.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Locations.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Logical_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Methods.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Modules.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Object_Creation.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Objects.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Operator_Precedence.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PSConsoleHostReadLine.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PSReadline.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PSSession_Details.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PSSessions.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PSSnapins.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PackageManagement.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Parameters.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Parameters_Default_Values.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Parsing.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Path_Syntax.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Pipelines.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PowerShell.exe.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_PowerShell_Ise.exe.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Preference_Variables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Profiles.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Prompts.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Properties.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Providers.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Quoting_Rules.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Redirection.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Ref.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Regular_Expressions.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Disconnected_Sessions.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_FAQ.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Jobs.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Output.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Requirements.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Troubleshooting.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Remote_Variables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Requires.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Reserved_Words.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Return.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Run_With_PowerShell.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Scopes.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Script_Blocks.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Script_Internationalization.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Scripts.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Session_Configuration_Files.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Session_Configurations.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Signing.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Special_Characters.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Splatting.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Split.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Switch.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Throw.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Transactions.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Trap.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Try_Catch_Finally.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Type_Operators.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Types.ps1xml.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Updatable_Help.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Variables.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_WMI.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_WMI_Cmdlets.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_WQL.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_WS-Management_Cmdlets.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_While.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Wildcards.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Windows_PowerShell_5.0.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Windows_PowerShell_ISE.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/about_Windows_RT.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/en-US/default.help.txt /opt/microsoft/powershell/6.0.0-alpha.15/libclrjit.so /opt/microsoft/powershell/6.0.0-alpha.15/libcoreclr.so /opt/microsoft/powershell/6.0.0-alpha.15/libcoreclrtraceptprovider.so /opt/microsoft/powershell/6.0.0-alpha.15/libcrypto.so.1.0.0 /opt/microsoft/powershell/6.0.0-alpha.15/libdbgshim.so /opt/microsoft/powershell/6.0.0-alpha.15/libhostfxr.so /opt/microsoft/powershell/6.0.0-alpha.15/libhostpolicy.so /opt/microsoft/powershell/6.0.0-alpha.15/libmi.so /opt/microsoft/powershell/6.0.0-alpha.15/libmscordaccore.so /opt/microsoft/powershell/6.0.0-alpha.15/libmscordbi.so /opt/microsoft/powershell/6.0.0-alpha.15/libpsl-native.so /opt/microsoft/powershell/6.0.0-alpha.15/libpsrpclient.so /opt/microsoft/powershell/6.0.0-alpha.15/libsos.so /opt/microsoft/powershell/6.0.0-alpha.15/libsosplugin.so /opt/microsoft/powershell/6.0.0-alpha.15/libssl.so.1.0.0 /opt/microsoft/powershell/6.0.0-alpha.15/libuv.so /opt/microsoft/powershell/6.0.0-alpha.15/license_thirdparty_proprietary.txt /opt/microsoft/powershell/6.0.0-alpha.15/mscorlib.dll /opt/microsoft/powershell/6.0.0-alpha.15/mscorlib.ni.dll /opt/microsoft/powershell/6.0.0-alpha.15/powershell /opt/microsoft/powershell/6.0.0-alpha.15/powershell.deps.json /opt/microsoft/powershell/6.0.0-alpha.15/powershell.dll /opt/microsoft/powershell/6.0.0-alpha.15/powershell.pdb /opt/microsoft/powershell/6.0.0-alpha.15/powershell.runtimeconfig.json /opt/microsoft/powershell/6.0.0-alpha.15/powershell.version /opt/microsoft/powershell/6.0.0-alpha.15/powershell.xml /opt/microsoft/powershell/6.0.0-alpha.15/sosdocsunix.txt /usr/bin/powershell /usr/local/share/man/man1/powershell.1.gz |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# yum --enablerepo=microsoft install powershell Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.tsukuba.wide.ad.jp * epel: mirror.premi.st * extras: ftp.tsukuba.wide.ad.jp * updates: ftp.iij.ad.jp Resolving Dependencies --> Running transaction check ---> Package powershell.x86_64 0:6.0.0_alpha.15-1.el7.centos will be installed --> Processing Dependency: uuid for package: powershell-6.0.0_alpha.15-1.el7.centos.x86_64 --> Processing Dependency: libunwind for package: powershell-6.0.0_alpha.15-1.el7.centos.x86_64 --> Running transaction check ---> Package libunwind.x86_64 2:1.1-5.el7_2.2 will be installed ---> Package uuid.x86_64 0:1.6.2-26.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ===================================================================================================== Package Arch Version Repository Size ===================================================================================================== Installing: powershell x86_64 6.0.0_alpha.15-1.el7.centos microsoft 39 M Installing for dependencies: libunwind x86_64 2:1.1-5.el7_2.2 base 56 k uuid x86_64 1.6.2-26.el7 base 55 k Transaction Summary ===================================================================================================== Install 1 Package (+2 Dependent packages) Total size: 39 M Installed size: 124 M Is this ok [y/d/N]: y Downloading packages: Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : uuid-1.6.2-26.el7.x86_64 1/3 Installing : 2:libunwind-1.1-5.el7_2.2.x86_64 2/3 Installing : powershell-6.0.0_alpha.15-1.el7.centos.x86_64 3/3 Verifying : powershell-6.0.0_alpha.15-1.el7.centos.x86_64 1/3 Verifying : 2:libunwind-1.1-5.el7_2.2.x86_64 2/3 Verifying : uuid-1.6.2-26.el7.x86_64 3/3 Installed: powershell.x86_64 0:6.0.0_alpha.15-1.el7.centos Dependency Installed: libunwind.x86_64 2:1.1-5.el7_2.2 uuid.x86_64 0:1.6.2-26.el7 Complete! |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# powershell PowerShell Copyright (C) 2016 Microsoft Corporation. All rights reserved. PS /root> get-help TOPIC Windows PowerShell Help System SHORT DESCRIPTION Displays help about Windows PowerShell cmdlets and concepts. (snip) PS /root> exit |
まだα版ですが、そもそもLinuxでPowerShellを動作させる目的って?
LinuxからPowerShellでWindowsの管理なのかな。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
PS /root> Get-Command CommandType Name Version Source ----------- ---- ------- ------ Function Add-NodeKeys 0.0 PSDesiredStateConfi... Function AddDscResourceProperty 0.0 PSDesiredStateConfi... Function AddDscResourcePropertyFromMetadata 0.0 PSDesiredStateConfi... Function AfterAll 3.3.9 Pester Function AfterEach 3.3.9 Pester Function Assert-MockCalled 3.3.9 Pester Function Assert-VerifiableMocks 3.3.9 Pester Function BeforeAll 3.3.9 Pester Function BeforeEach 3.3.9 Pester Function CheckResourceFound 0.0 PSDesiredStateConfi... Function Clear-Host Function Compress-Archive 1.0.1.0 Microsoft.PowerShel... Function Configuration 0.0 PSDesiredStateConfi... Function Context 3.3.9 Pester Function ConvertTo-MOFInstance 0.0 PSDesiredStateConfi... Function Describe 3.3.9 Pester Function Expand-Archive 1.0.1.0 Microsoft.PowerShel... Function Find-Command 1.1.2.0 PowerShellGet Function Find-DscResource 1.1.2.0 PowerShellGet Function Find-Module 1.1.2.0 PowerShellGet Function Find-RoleCapability 1.1.2.0 PowerShellGet Function Find-Script 1.1.2.0 PowerShellGet Function Format-Hex 3.1.0.0 Microsoft.PowerShel... Function Generate-VersionInfo 0.0 PSDesiredStateConfi... Function Get-CompatibleVersionAddtionaPropertiesStr 0.0 PSDesiredStateConfi... Function Get-ComplexResourceQualifier 0.0 PSDesiredStateConfi... Function Get-ConfigurationErrorCount 0.0 PSDesiredStateConfi... Function Get-DSCResourceModules 0.0 PSDesiredStateConfi... Function Get-DscResource 0.0 PSDesiredStateConfi... Function Get-EncryptedPassword 0.0 PSDesiredStateConfi... Function Get-FileHash 3.1.0.0 Microsoft.PowerShel... Function Get-InnerMostErrorRecord 0.0 PSDesiredStateConfi... Function Get-InstalledModule 1.1.2.0 PowerShellGet Function Get-InstalledScript 1.1.2.0 PowerShellGet Function Get-MockDynamicParameters 3.3.9 Pester Function Get-MofInstanceName 0.0 PSDesiredStateConfi... Function Get-MofInstanceText 0.0 PSDesiredStateConfi... Function Get-PSCurrentConfigurationNode 0.0 PSDesiredStateConfi... Function Get-PSDefaultConfigurationDocument 0.0 PSDesiredStateConfi... Function Get-PSMetaConfigDocumentInstVersionInfo 0.0 PSDesiredStateConfi... Function Get-PSMetaConfigurationProcessed 0.0 PSDesiredStateConfi... Function Get-PSRepository 1.1.2.0 PowerShellGet Function Get-PSTopConfigurationName 0.0 PSDesiredStateConfi... Function Get-PositionInfo 0.0 PSDesiredStateConfi... Function Get-PublicKeyFromFile 0.0 PSDesiredStateConfi... Function Get-PublicKeyFromStore 0.0 PSDesiredStateConfi... Function Get-TestDriveItem 3.3.9 Pester Function GetCompositeResource 0.0 PSDesiredStateConfi... Function GetImplementingModulePath 0.0 PSDesiredStateConfi... Function GetModule 0.0 PSDesiredStateConfi... Function GetPatterns 0.0 PSDesiredStateConfi... Function GetResourceFromKeyword 0.0 PSDesiredStateConfi... Function GetSyntax 0.0 PSDesiredStateConfi... Function Import-PowerShellDataFile 3.1.0.0 Microsoft.PowerShel... Function ImportCimAndScriptKeywordsFromModule 0.0 PSDesiredStateConfi... Function ImportClassResourcesFromModule 0.0 PSDesiredStateConfi... Function ImportSystemModules Function In 3.3.9 Pester Function InModuleScope 3.3.9 Pester Function Initialize-ConfigurationRuntimeState 0.0 PSDesiredStateConfi... Function Install-Module 1.1.2.0 PowerShellGet Function Install-Script 1.1.2.0 PowerShellGet Function Invoke-Mock 3.3.9 Pester Function Invoke-Pester 3.3.9 Pester Function IsHiddenResource 0.0 PSDesiredStateConfi... Function IsPatternMatched 0.0 PSDesiredStateConfi... Function It 3.3.9 Pester Function Mock 3.3.9 Pester Function New-DscChecksum 0.0 PSDesiredStateConfi... Function New-Fixture 3.3.9 Pester Function New-ScriptFileInfo 1.1.2.0 PowerShellGet Function Node 0.0 PSDesiredStateConfi... Function PSConsoleHostReadline 1.2 PSReadLine Function Pause Function Publish-Module 1.1.2.0 PowerShellGet Function Publish-Script 1.1.2.0 PowerShellGet Function ReadEnvironmentFile 0.0 PSDesiredStateConfi... Function Register-PSRepository 1.1.2.0 PowerShellGet Function Save-Module 1.1.2.0 PowerShellGet Function Save-Script 1.1.2.0 PowerShellGet Function Set-DynamicParameterVariables 3.3.9 Pester Function Set-NodeExclusiveResources 0.0 PSDesiredStateConfi... Function Set-NodeManager 0.0 PSDesiredStateConfi... Function Set-NodeResourceSource 0.0 PSDesiredStateConfi... Function Set-NodeResources 0.0 PSDesiredStateConfi... Function Set-PSCurrentConfigurationNode 0.0 PSDesiredStateConfi... Function Set-PSDefaultConfigurationDocument 0.0 PSDesiredStateConfi... Function Set-PSMetaConfigDocInsProcessedBeforeMeta 0.0 PSDesiredStateConfi... Function Set-PSMetaConfigVersionInfoV2 0.0 PSDesiredStateConfi... Function Set-PSRepository 1.1.2.0 PowerShellGet Function Set-PSTopConfigurationName 0.0 PSDesiredStateConfi... Function Setup 3.3.9 Pester Function Should 3.3.9 Pester Function StrongConnect 0.0 PSDesiredStateConfi... Function TabExpansion2 Function Test-ConflictingResources 0.0 PSDesiredStateConfi... Function Test-ModuleReloadRequired 0.0 PSDesiredStateConfi... Function Test-MofInstanceText 0.0 PSDesiredStateConfi... Function Test-NodeManager 0.0 PSDesiredStateConfi... Function Test-NodeResourceSource 0.0 PSDesiredStateConfi... Function Test-NodeResources 0.0 PSDesiredStateConfi... Function Test-ScriptFileInfo 1.1.2.0 PowerShellGet Function ThrowError 0.0 PSDesiredStateConfi... Function Uninstall-Module 1.1.2.0 PowerShellGet Function Uninstall-Script 1.1.2.0 PowerShellGet Function Unregister-PSRepository 1.1.2.0 PowerShellGet Function Update-ConfigurationDocumentRef 0.0 PSDesiredStateConfi... Function Update-ConfigurationErrorCount 0.0 PSDesiredStateConfi... Function Update-DependsOn 0.0 PSDesiredStateConfi... Function Update-LocalConfigManager 0.0 PSDesiredStateConfi... Function Update-Module 1.1.2.0 PowerShellGet Function Update-ModuleManifest 1.1.2.0 PowerShellGet Function Update-ModuleVersion 0.0 PSDesiredStateConfi... Function Update-Script 1.1.2.0 PowerShellGet Function Update-ScriptFileInfo 1.1.2.0 PowerShellGet Function ValidateNoCircleInNodeResources 0.0 PSDesiredStateConfi... Function ValidateNoNameNodeResources 0.0 PSDesiredStateConfi... Function ValidateNodeExclusiveResources 0.0 PSDesiredStateConfi... Function ValidateNodeManager 0.0 PSDesiredStateConfi... Function ValidateNodeResourceSource 0.0 PSDesiredStateConfi... Function ValidateNodeResources 0.0 PSDesiredStateConfi... Function ValidateUpdate-ConfigurationData 0.0 PSDesiredStateConfi... Function Write-Log 0.0 PSDesiredStateConfi... Function Write-MetaConfigFile 0.0 PSDesiredStateConfi... Function Write-NodeMOFFile 0.0 PSDesiredStateConfi... Function WriteFile 0.0 PSDesiredStateConfi... Function cd.. Function cd\ Function help Function more Function oss Function prompt Cmdlet Add-Content 3.1.0.0 Microsoft.PowerShel... Cmdlet Add-History 3.0.0.0 Microsoft.PowerShel... Cmdlet Add-Member 3.1.0.0 Microsoft.PowerShel... Cmdlet Add-Type 3.1.0.0 Microsoft.PowerShel... Cmdlet Clear-Content 3.1.0.0 Microsoft.PowerShel... Cmdlet Clear-History 3.0.0.0 Microsoft.PowerShel... Cmdlet Clear-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Clear-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Clear-Variable 3.1.0.0 Microsoft.PowerShel... Cmdlet Compare-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Connect-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Convert-Path 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertFrom-Csv 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertFrom-Json 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertFrom-SecureString 3.0.0.0 Microsoft.PowerShel... Cmdlet ConvertFrom-StringData 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertTo-Csv 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertTo-Html 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertTo-Json 3.1.0.0 Microsoft.PowerShel... Cmdlet ConvertTo-SecureString 3.0.0.0 Microsoft.PowerShel... Cmdlet ConvertTo-Xml 3.1.0.0 Microsoft.PowerShel... Cmdlet Copy-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Copy-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Debug-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Debug-Process 3.1.0.0 Microsoft.PowerShel... Cmdlet Debug-Runspace 3.1.0.0 Microsoft.PowerShel... Cmdlet Disable-PSBreakpoint 3.1.0.0 Microsoft.PowerShel... Cmdlet Disable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Disable-RunspaceDebug 3.1.0.0 Microsoft.PowerShel... Cmdlet Disconnect-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Enable-PSBreakpoint 3.1.0.0 Microsoft.PowerShel... Cmdlet Enable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Enable-RunspaceDebug 3.1.0.0 Microsoft.PowerShel... Cmdlet Enter-PSHostProcess 3.0.0.0 Microsoft.PowerShel... Cmdlet Enter-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Exit-PSHostProcess 3.0.0.0 Microsoft.PowerShel... Cmdlet Exit-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Export-Alias 3.1.0.0 Microsoft.PowerShel... Cmdlet Export-Clixml 3.1.0.0 Microsoft.PowerShel... Cmdlet Export-Csv 3.1.0.0 Microsoft.PowerShel... Cmdlet Export-FormatData 3.1.0.0 Microsoft.PowerShel... Cmdlet Export-ModuleMember 3.0.0.0 Microsoft.PowerShel... Cmdlet Export-PSSession 3.1.0.0 Microsoft.PowerShel... Cmdlet Find-Package 1.1.2.0 PackageManagement Cmdlet Find-PackageProvider 1.1.2.0 PackageManagement Cmdlet ForEach-Object 3.0.0.0 Microsoft.PowerShel... Cmdlet Format-Custom 3.1.0.0 Microsoft.PowerShel... Cmdlet Format-List 3.1.0.0 Microsoft.PowerShel... Cmdlet Format-Table 3.1.0.0 Microsoft.PowerShel... Cmdlet Format-Wide 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Alias 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-ChildItem 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Command 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-Content 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Credential 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-Culture 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Date 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Event 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-EventSubscriber 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-ExecutionPolicy 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-FormatData 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Help 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-History 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-Host 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-ItemPropertyValue 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-Location 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Member 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Module 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-PSBreakpoint 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-PSCallStack 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-PSDrive 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-PSHostProcessInfo 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-PSProvider 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-PSReadlineKeyHandler 1.2 PSReadLine Cmdlet Get-PSReadlineOption 1.2 PSReadLine Cmdlet Get-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-PSSessionCapability 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Get-Package 1.1.2.0 PackageManagement Cmdlet Get-PackageProvider 1.1.2.0 PackageManagement Cmdlet Get-PackageSource 1.1.2.0 PackageManagement Cmdlet Get-Process 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Random 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Runspace 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-RunspaceDebug 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-TraceSource 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-TypeData 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-UICulture 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Unique 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Uptime 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Variable 3.1.0.0 Microsoft.PowerShel... Cmdlet Get-Verb 3.1.0.0 Microsoft.PowerShel... Cmdlet Group-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-Alias 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-Clixml 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-Csv 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-LocalizedData 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-Module 3.0.0.0 Microsoft.PowerShel... Cmdlet Import-PSSession 3.1.0.0 Microsoft.PowerShel... Cmdlet Import-PackageProvider 1.1.2.0 PackageManagement Cmdlet Install-Package 1.1.2.0 PackageManagement Cmdlet Install-PackageProvider 1.1.2.0 PackageManagement Cmdlet Invoke-Command 3.0.0.0 Microsoft.PowerShel... Cmdlet Invoke-Expression 3.1.0.0 Microsoft.PowerShel... Cmdlet Invoke-History 3.0.0.0 Microsoft.PowerShel... Cmdlet Invoke-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Invoke-RestMethod 3.1.0.0 Microsoft.PowerShel... Cmdlet Invoke-WebRequest 3.1.0.0 Microsoft.PowerShel... Cmdlet Join-Path 3.1.0.0 Microsoft.PowerShel... Cmdlet Measure-Command 3.1.0.0 Microsoft.PowerShel... Cmdlet Measure-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Move-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Move-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Alias 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Event 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Guid 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet New-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Module 3.0.0.0 Microsoft.PowerShel... Cmdlet New-ModuleManifest 3.0.0.0 Microsoft.PowerShel... Cmdlet New-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet New-PSDrive 3.1.0.0 Microsoft.PowerShel... Cmdlet New-PSRoleCapabilityFile 3.0.0.0 Microsoft.PowerShel... Cmdlet New-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet New-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShel... Cmdlet New-PSSessionOption 3.0.0.0 Microsoft.PowerShel... Cmdlet New-PSTransportOption 3.0.0.0 Microsoft.PowerShel... Cmdlet New-TemporaryFile 3.1.0.0 Microsoft.PowerShel... Cmdlet New-TimeSpan 3.1.0.0 Microsoft.PowerShel... Cmdlet New-Variable 3.1.0.0 Microsoft.PowerShel... Cmdlet Out-Default 3.0.0.0 Microsoft.PowerShel... Cmdlet Out-File 3.1.0.0 Microsoft.PowerShel... Cmdlet Out-Host 3.0.0.0 Microsoft.PowerShel... Cmdlet Out-Null 3.0.0.0 Microsoft.PowerShel... Cmdlet Out-String 3.1.0.0 Microsoft.PowerShel... Cmdlet Pop-Location 3.1.0.0 Microsoft.PowerShel... Cmdlet Push-Location 3.1.0.0 Microsoft.PowerShel... Cmdlet Read-Host 3.1.0.0 Microsoft.PowerShel... Cmdlet Receive-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Receive-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Register-ArgumentCompleter 3.0.0.0 Microsoft.PowerShel... Cmdlet Register-EngineEvent 3.1.0.0 Microsoft.PowerShel... Cmdlet Register-ObjectEvent 3.1.0.0 Microsoft.PowerShel... Cmdlet Register-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Register-PackageSource 1.1.2.0 PackageManagement Cmdlet Remove-Event 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Remove-Module 3.0.0.0 Microsoft.PowerShel... Cmdlet Remove-PSBreakpoint 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-PSDrive 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-PSReadlineKeyHandler 1.2 PSReadLine Cmdlet Remove-PSSession 3.0.0.0 Microsoft.PowerShel... Cmdlet Remove-TypeData 3.1.0.0 Microsoft.PowerShel... Cmdlet Remove-Variable 3.1.0.0 Microsoft.PowerShel... Cmdlet Rename-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Rename-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Resolve-Path 3.1.0.0 Microsoft.PowerShel... Cmdlet Save-Help 3.0.0.0 Microsoft.PowerShel... Cmdlet Save-Package 1.1.2.0 PackageManagement Cmdlet Select-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Select-String 3.1.0.0 Microsoft.PowerShel... Cmdlet Select-Xml 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-Alias 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-Content 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-Date 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-ExecutionPolicy 3.0.0.0 Microsoft.PowerShel... Cmdlet Set-Item 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-ItemProperty 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-Location 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-PSBreakpoint 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-PSDebug 3.0.0.0 Microsoft.PowerShel... Cmdlet Set-PSReadlineKeyHandler 1.2 PSReadLine Cmdlet Set-PSReadlineOption 1.2 PSReadLine Cmdlet Set-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Set-PackageSource 1.1.2.0 PackageManagement Cmdlet Set-StrictMode 3.0.0.0 Microsoft.PowerShel... Cmdlet Set-TraceSource 3.1.0.0 Microsoft.PowerShel... Cmdlet Set-Variable 3.1.0.0 Microsoft.PowerShel... Cmdlet Sort-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Split-Path 3.1.0.0 Microsoft.PowerShel... Cmdlet Start-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Start-Process 3.1.0.0 Microsoft.PowerShel... Cmdlet Start-Sleep 3.1.0.0 Microsoft.PowerShel... Cmdlet Start-Transcript 3.0.0.0 Microsoft.PowerShel... Cmdlet Stop-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Stop-Process 3.1.0.0 Microsoft.PowerShel... Cmdlet Stop-Transcript 3.0.0.0 Microsoft.PowerShel... Cmdlet Tee-Object 3.1.0.0 Microsoft.PowerShel... Cmdlet Test-ModuleManifest 3.0.0.0 Microsoft.PowerShel... Cmdlet Test-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShel... Cmdlet Test-Path 3.1.0.0 Microsoft.PowerShel... Cmdlet Trace-Command 3.1.0.0 Microsoft.PowerShel... Cmdlet Uninstall-Package 1.1.2.0 PackageManagement Cmdlet Unregister-Event 3.1.0.0 Microsoft.PowerShel... Cmdlet Unregister-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShel... Cmdlet Unregister-PackageSource 1.1.2.0 PackageManagement Cmdlet Update-FormatData 3.1.0.0 Microsoft.PowerShel... Cmdlet Update-Help 3.0.0.0 Microsoft.PowerShel... Cmdlet Update-TypeData 3.1.0.0 Microsoft.PowerShel... Cmdlet Wait-Debugger 3.1.0.0 Microsoft.PowerShel... Cmdlet Wait-Event 3.1.0.0 Microsoft.PowerShel... Cmdlet Wait-Job 3.0.0.0 Microsoft.PowerShel... Cmdlet Wait-Process 3.1.0.0 Microsoft.PowerShel... Cmdlet Where-Object 3.0.0.0 Microsoft.PowerShel... Cmdlet Write-Debug 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Error 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Host 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Information 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Output 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Progress 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Verbose 3.1.0.0 Microsoft.PowerShel... Cmdlet Write-Warning 3.1.0.0 Microsoft.PowerShel... |