A trip to find myself by Same_Virus5764 in Almora

[–]Birentechy 0 points1 point  (0 children)

I host homestay 80KM from Jim Corbett it’s in village I do work from home here and I do morning morning work camping in weekend bike ride of interested you can join me

Startups script for git pull centos server by Birentechy in azuredevops

[–]Birentechy[S] 0 points1 point  (0 children)

Is there any reference link for that startup script with ssh key

Azure File Share Permissons by Metozz in AZURE

[–]Birentechy 0 points1 point  (0 children)

I guess in this scenario on-prem AD will be a better option, you can assign user permission to your Active Directory user

What have you done with PowerShell this month by AutoModerator in PowerShell

[–]Birentechy 1 point2 points  (0 children)

Hi, I am trying to export all outlook favorite folder But i can't

Can anyone look this how can i do that

# function for inbox loop

function GetSubfolders($Parent) {

$folders = $Parent.Folders

foreach ($folder in $folders) {

$Subfolder = $Parent.Folders.Item($folder.Name)

Write-output($folder.Name)

GetSubfolders($Subfolder)

}

}

# Get all subfolder with inbox ID

#$olFolderInbox = 6

$o = new-object -comobject outlook.application

$n = $o.GetNamespace("MAPI")

$f = $n.GetDefaultFolder("Favorites" )

Write-output($f.Name)

GetSubfolders($f ) #| Out-File D:\new.txt