Advertisement
amandab

Untitled

Oct 14th, 2016
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. param : The term 'param' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
  2. the spelling of the name, or if a path was included, verify that the path is correct and try again.
  3. At C:\install_cert_and_exceptions.ps1:2 char:1
  4. + param(
  5. + ~~~~~
  6.     + CategoryInfo          : ObjectNotFound: (param:String) [], CommandNotFoundException
  7.     + FullyQualifiedErrorId : CommandNotFoundException
  8.  
  9. Exception calling "DownloadFile" with "2" argument(s): "The underlying connection was closed: Could not establish
  10. trust relationship for the SSL/TLS secure channel."
  11. At C:\install_cert_and_exceptions.ps1:9 char:1
  12. + $webclient.DownloadFile($url,$file)
  13. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14.     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
  15.     + FullyQualifiedErrorId : WebException
  16.  
  17. Exception calling "Import" with "1" argument(s): "The system cannot find the file specified.
  18. "
  19. At C:\install_cert_and_exceptions.ps1:14 char:3
  20. +   $cert.import($certPath)
  21. +   ~~~~~~~~~~~~~~~~~~~~~~~
  22.     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
  23.     + FullyQualifiedErrorId : CryptographicException
  24.  
  25. Exception calling "Add" with "1" argument(s): "pCertContext is an invalid handle."
  26. At C:\install_cert_and_exceptions.ps1:17 char:3
  27. +   $store.add($cert)
  28. +   ~~~~~~~~~~~~~~~~~
  29.     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
  30.     + FullyQualifiedErrorId : CryptographicException
  31.  
  32. Add-Content : Could not find a part of the path 'C:\Users\aburm\Application
  33. Data\Sun\Java\Deployment\security\exception.sites'.
  34. At C:\install_cert_and_exceptions.ps1:28 char:5
  35. +     Add-Content -Path "$env:USERPROFILE\Application Data\Sun\Java\Dep ...
  36. +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37.    + CategoryInfo          : ObjectNotFound: (C:\Users\aburm\...exception.sites:String) [Add-Content], DirectoryNotF
  38.   undException
  39.    + FullyQualifiedErrorId : GetContentWriterDirectoryNotFoundError,Microsoft.PowerShell.Commands.AddContentCommand
  40.  
  41. Add-Content : Could not find a part of the path 'C:\Users\aburm\Application
  42. Data\Sun\Java\Deployment\security\exception.sites'.
  43. At C:\install_cert_and_exceptions.ps1:29 char:2
  44. +     Add-Content -Path "$env:USERPROFILE\Application Data\Sun\Java\Dep ...
  45. +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  46.     + CategoryInfo          : ObjectNotFound: (C:\Users\aburm\...exception.sites:String) [Add-Content], DirectoryNotF
  47.    undException
  48.     + FullyQualifiedErrorId : GetContentWriterDirectoryNotFoundError,Microsoft.PowerShell.Commands.AddContentCommand
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement