This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Write-Host "Didn't really expect me to do a thing, did you?" | |
| # Dummy script file for a tutorial | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <Types> | |
| <!-- Fred.IronScripter2018.DiskInfo --> | |
| <Type> | |
| <Name>Deserialized.Fred.IronScripter2018.DiskInfo</Name> | |
| <Members> | |
| <MemberSet> | |
| <Name>PSStandardMembers</Name> | |
| <Members> | |
| <NoteProperty> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function Get-FISSystemInformation | |
| { | |
| <# | |
| .SYNOPSIS | |
| Gathers information on the target's system. | |
| .DESCRIPTION | |
| This function uses CIM to gather information about the target computer(s)'s system. | |
| .PARAMETER ComputerName | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| namespace Fred.IronScripter2018 | |
| { | |
| /// <summary> | |
| /// Class containing information on a disk | |
| /// </summary> | |
| [Serializable] | |
| public class DiskInfo | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <TargetFramework>netstandard2.0</TargetFramework> | |
| </PropertyGroup> | |
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | |
| <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | |
| <OutputPath>..\..\..\FredsIronScripter2018\bin</OutputPath> | |
| <DocumentationFile>..\..\..\FredsIronScripter2018\bin\FredsIronScripter2018.xml</DocumentationFile> | 
NewerOlder