Thursday 22 December 2022

[CmdletBinding()]

 


If you add CmdletBinding parameter only then you will have all the below options available

  • Name
  • Verbose
  • Debug
  • ErrorAction
If you add only param $name without CmdletBinding then you will have only Name showing as an option



Tuesday 26 July 2022

Power Apps Help File

    1.   Displaying First  and Last Name together

        ThisItem.'First Name' & " " & ThisItem.'Last Name'

        Concatenate(ThisItem.FirstName, ThisItem.LastName, 


    2. Date Formatting

        Text function is used for Date formatting

        Text(ThisItem.DateJoined,"mm/dd/yyyy")

Monday 13 June 2022

Removing empty row from csv column using PowerShell

Exchange Mailboxes
Include:[sumant@outlook.com] 
Include:[keshav@outlook.com]

Include:[Jewel@outlook.com]

Script
Import-Csv "C:\AuditLogSearch\Dis\Modified-Audit-Log-Records.csv" |
  Where-Object 'Exchange Mailboxes' -ne ''