Guest User

Untitled

a guest
Jul 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Function New-SocialInteraction {
  2. [cmdletBinding()]
  3. Param(
  4. [Parameter(Mandatory, Positon = 0)]
  5. [String]$Person,
  6. [Parameter(Mandatory, Position = 1)]
  7. [String]$Topic
  8. )
  9.  
  10. New-PSDrive -Name Brain -PSProvider FileSystem -Root Noggin
  11. If ($Person -eq 'Wife') {
  12.  
  13. Get-Content Brain:\$person_$topic.txt | Out-Null
  14.  
  15. }
  16.  
  17. }
  18.  
  19. New-SocialInteraction -Person Wife -Topic 'Honey Do List' | Out-Null
Add Comment
Please, Sign In to add comment