ChenV

Results 4 comments of ChenV

@Tiberriver256 - As an alternative we can create a table in README.md file like illustrated below | Title | Reference | Author | | ------------------------------------------------------ | ------------------------------------------------------------ | ------------ |...

Yes, it will be good if we have a option to download files like ```PowerShell Import-Module Polaris -Verbose New-PolarisStaticRoute -RoutePath "/MyFile" -FolderPath "./downloads" New-PolarisGetRoute -Path "/" -ScriptBlock { $Response.Send("Hello World!")...

Good point! Thanks for your insights!

As a workaround I used `New-UDTable` ```PowerShell $adsi = [adsisearcher]::new() $adsi.Filter = "(&(ObjectCategory=User)(samaccountname=$env:USERNAME))" $UserInformation = $adsi.FindOne().Properties New-UdTable -Title "User Information" -Headers @(" ", " ") -Endpoint { @{ 'First Name'...