# Connect to Exchange Online:
Connect-ExchangeOnline -UserPrincipalName youradmin@domain.com
# connect to Exchange Online PowerShell:
Connect-IPPSSession

				
			
				
					# Create a Compliance Search for the Inbox:
New-ComplianceSearch -Name "DeleteInboxEmails" -ExchangeLocation "user@domain.com" -ContentMatchQuery 'Folder:Inbox AND Received:<=01/01/2023'

				
			
				
					# Start the Compliance Search:
Start-ComplianceSearch -Identity "DeleteInboxEmails"

				
			
				
					# Create a Compliance Search Action to Delete:
New-ComplianceSearchAction -SearchAction "Purge" -ComplianceSearch "DeleteInboxEmails"

				
			
				
					#coonect to powershell azure
Connect-MsolService

#exchange online
Connect-ExchangeOnline


				
			
				
					#Check Mailbox Permission
Get-MailboxFolderPermission -Identity user@domain.co.il:\Calendar
Get-MailboxFolderPermission -Identity user@domain.co.il:\"לוח שנה"

				
			
				
					#set User Permission to another user
Add-MailboxFolderPermission -Identity user@domain.co.il:\calendar -User user_to_get@domain.co.il -AccessRights editor
Add-MailboxFolderPermission -Identity user@domain.co.il:\"לוח שנה" -User user_to_get@domain.co.il -AccessRights editor

				
			
				
					# -AccessRights options
#1- reviewer
#2- editor
				
			
				
					#Disabled wi-fi By ComputerName 
$computer = Read-Host "Enter Computer Name"
Invoke-Command -ComputerName "$computer" -ScriptBlock {
    Get-NetAdapter -Name "Wi-Fi" | Disable-NetAdapter -Confirm:$false
}


				
			
				
					# List of remote servers
$Servers = @("server1", "server2", "server3")  # Replace with your server names

# Log file path
$date = Get-Date
$datet = $date.ToString("yyyyMMdd_HHmmss")

$LogFile = "D:\Powershell\log\Logoff_$datet.txt"

# Function to log messages
function Write-Log {
    param (
        [string]$Message
    )
    $Timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
    "$Timestamp - $Message" | Out-File -FilePath $LogFile -Append
}

# Start logging
Write-Log "--- Script Execution Started ---"

# Loop through each server and log off disconnected sessions
foreach ($Server in $Servers) {
    Write-Log "Processing server: $Server"
    
    try {
        # Retrieve sessions on the remote server
        $Sessions = Invoke-Command -ComputerName $Server -ScriptBlock {
            quser | ForEach-Object {
                $parts = ($_ -replace '\s{2,}', ',').Split(',')
                if ($parts.Length -ge 3) {
                    [PSCustomObject]@{
                        UserName   = $parts[0]
                        SessionID  = $parts[1]
                        State      = $parts[2]
                    }
                }
            }
        }

        # Filter and log off disconnected sessions
        $DisconnectedSessions = $Sessions | Where-Object { $_.State -eq 'Disc' }

        if ($DisconnectedSessions) {
            foreach ($Session in $DisconnectedSessions) {
                Write-Log "Found disconnected session: User=$($Session.UserName), SessionID=$($Session.SessionID) on $Server"
                
                try {
                    Invoke-Command -ComputerName $Server -ScriptBlock {
                        param($SessionID)
                        logoff $SessionID
                    } -ArgumentList $Session.SessionID
                    Write-Log "Successfully logged off session ID: $($Session.SessionID) on $Server"
                } catch {
                    Write-Log "Failed to log off session ID: $($Session.SessionID) on $Server. Error: $($_.Exception.Message)"
                }
            }
        } else {
            Write-Log "No disconnected sessions found on $Server"
        }

    } catch {
        Write-Log "Error processing server $Server : $($_.Exception.Message)"
    }
}

Write-Log "--- Script Execution Completed ---"

				
			

Get User Parameters To SCV User Desktop

				
					Write-Host "Get_user_parameters_to_SCV_User_Desktop"
$filespath = [environment]::GetFolderPath('Desktop')

try{
	if(-not(Test-Path -Path $filespath -ErrorAction Stop)){
	#dir not found.create the dir
	New-Item -ItemType Directory -Path $filespath -ErrorAction Stop | Out-Null
	}
}
catch {
	throw
}

Get-ADUser -Filter { Enabled -eq $true } -Properties * | Select-Object name, SamAccountName, department, mail, mobile, Employeeid, extensionAttribute1, extensionAttribute2, extensionAttribute4  | Export-CSV $filespath\Users_Accounts.csv -notypeinformation
		
# Path to the CSV file
$csvPath = "$filespath\Users_Accounts.csv"

# Read the CSV file
$users = Import-Csv -Path $csvPath

				
			

AnyDesk Upgrade From The Internet:

				
					# Script to silently upgrade AnyDesk on domain computers
# Create timestamp for logging
$timestamp = Get-Date -Format "yyyy-MM-dd_HH-mm-ss"
$logFile = "C:\Temp\AnyDesk_Upgrade_$timestamp.log"

# Function to write to log file
function Write-Log {
    param($Message)
    $logMessage = "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss'): $Message"
    Add-Content -Path $logFile -Value $logMessage
    Write-Output $logMessage
}

# Create log directory if it doesn't exist
if (!(Test-Path "C:\Temp")) {
    New-Item -ItemType Directory -Path "C:\Temp"
}

Write-Log "Starting AnyDesk upgrade process..."

try {
    # Check if AnyDesk is installed
    $anyDeskInstalled = Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | 
        Where-Object { $_.DisplayName -like "*AnyDesk*" }

    if ($anyDeskInstalled) {
        $currentVersion = $anyDeskInstalled.DisplayVersion
        Write-Log "Current AnyDesk version: $currentVersion"

        # Download latest version
        $downloadUrl = "https://download.anydesk.com/AnyDesk.exe"
        $downloadPath = "C:\Temp\AnyDesk_Latest.exe"

        Write-Log "Downloading latest version of AnyDesk..."
        Invoke-WebRequest -Uri $downloadUrl -OutFile $downloadPath

        # Stop AnyDesk process if running
        $process = Get-Process "AnyDesk" -ErrorAction SilentlyContinue
        if ($process) {
            Write-Log "Stopping AnyDesk process..."
            Stop-Process -Name "AnyDesk" -Force
            Start-Sleep -Seconds 2
        }

        # Install new version silently
        Write-Log "Installing new version..."
        $installArgs = "--silent --install `"C:\Program Files (x86)\AnyDesk`""
        Start-Process -FilePath $downloadPath -ArgumentList $installArgs -Wait

        # Verify new installation
        $newVersion = (Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | 
            Where-Object { $_.DisplayName -like "*AnyDesk*" }).DisplayVersion

        if ($newVersion -ne $currentVersion) {
            Write-Log "Upgrade successful! New version: $newVersion"
        } else {
            Write-Log "WARNING: Version number unchanged after upgrade attempt"
        }

        # Clean up downloaded file
        Remove-Item $downloadPath -Force
        Write-Log "Cleaned up temporary files"
    } else {
        Write-Log "AnyDesk is not installed on this machine. Skipping upgrade."
    }
} catch {
    Write-Log "ERROR: An error occurred during the upgrade process:"
    Write-Log $_.Exception.Message
    exit 1
}

Write-Log "Script execution completed"
				
			

AnyDesk Upgrade From Local File

				
					# Script to silently upgrade AnyDesk on domain computers
# Create timestamp for logging
$timestamp = Get-Date -Format "yyyy-MM-dd_HH-mm-ss"
$logFile = "C:\Temp\AnyDesk_Upgrade_$timestamp.log"

# Function to write to log file
function Write-Log {
    param($Message)
    $logMessage = "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss'): $Message"
    Add-Content -Path $logFile -Value $logMessage
    Write-Output $logMessage
}

# Create log directory if it doesn't exist
if (!(Test-Path "C:\Temp")) {
    New-Item -ItemType Directory -Path "C:\Temp"
}

Write-Log "Starting AnyDesk upgrade process..."

$sharedFolder = "\\ams-dc2\apps\AnyDesk\"
$anydeskInstaller = "AnyDesk.exe"
$localInstallerPath = "C:\apps\$anydeskInstaller"

# Create apps directory if it doesn't exist
if (-not (Test-Path "C:\apps")) {
    New-Item -Path "C:\apps" -ItemType Directory
}

try {
    # Check if AnyDesk is installed
    $anyDeskInstalled = Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | 
        Where-Object { $_.DisplayName -like "*AnyDesk*" }

    if ($anyDeskInstalled) {
        $currentVersion = $anyDeskInstalled.DisplayVersion
        Write-Log "Current AnyDesk version: $currentVersion"

       # Copy the installer from the shared folder
        Copy-Item "$sharedFolder\$anydeskInstaller" -Destination $localInstallerPath -Force


        # Stop AnyDesk process if running
        $process = Get-Process "AnyDesk" -ErrorAction SilentlyContinue
        if ($process) {
            Write-Log "Stopping AnyDesk process..."
            Stop-Process -Name "AnyDesk" -Force
            Start-Sleep -Seconds 2
        }

        # Install new version silently
        Write-Log "Installing new version..."
        $installArgs = "--silent --install `"C:\Program Files (x86)\AnyDesk`""
        Start-Process -FilePath $localInstallerPath -ArgumentList $installArgs -Wait

        # Verify new installation
        $newVersion = (Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | 
            Where-Object { $_.DisplayName -like "*AnyDesk*" }).DisplayVersion

        if ($newVersion -ne $currentVersion) {
            Write-Log "Upgrade successful! New version: $newVersion"
        } else {
            Write-Log "WARNING: Version number unchanged after upgrade attempt"
        }

        # Clean up downloaded file
        Remove-Item $localInstallerPath -Force
        Write-Log "Cleaned up temporary files"
    } else {
        Write-Log "AnyDesk is not installed on this machine. Skipping upgrade."
    }
} catch {
    Write-Log "ERROR: An error occurred during the upgrade process:"
    Write-Log $_.Exception.Message
    exit 1
}

Write-Log "Script execution completed"
				
			

Sftp To Directory

				
					# Directory mappings
$directories = @('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', 
                '11', '12', '13', '15', '16', '17', '18', '19', '21', '22', 
                '23', '24', '25', '27', '28', '31', '32', '33')

# SFTP Configuration - Replace with your actual values
$sftpConfig = @{
    Server = "ftp.domain.com"
    Port = 22
    Username = "user"
    Password = "password"
    RemotePath = "/folder/PDF"
    SshHostKeyFingerprint = "ssh-rsa 2048 number"
}

# Log directory
$logDir = "D:\LOCAL-FOLDER\Log"
if (-not (Test-Path $logDir)) {
    New-Item -ItemType Directory -Path $logDir -Force
}

# Function to write to log file
function Write-ToLog {
    param(
        [string]$Message,
        [string]$LogFile
    )
    $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
    "$timestamp - $Message" | Out-File -FilePath $LogFile -Append
}
# Function to list all files in SFTP directory
function List-SftpFiles {
    param(
        [WinSCP.Session]$Session,
        [string]$LogFile
    )
    try {
        Write-ToLog "Listing all files in remote directory:" $LogFile
        $allFiles = $Session.EnumerateRemoteFiles(
            $sftpConfig.RemotePath,
            "*.*",
            [WinSCP.EnumerationOptions]::None
        )
        foreach ($file in $allFiles) {
            Write-ToLog "Found file in SFTP: $($file.Name)" $LogFile
        }
    }
    catch {
        Write-ToLog "Error listing SFTP directory: $_" $LogFile
    }
}

# Function to process files
function Process-Files {
    param(
        [WinSCP.Session]$Session,
        [string]$Pattern,
        [bool]$DeleteAfterDownload
    )
    
    $date = Get-Date
    $logFile = Join-Path $logDir ("FileTransfer_" + $date.ToString("yyyyMMdd_HHmmss") + "_" + $Pattern.Replace("*", "all") + ".log")
    Write-ToLog "Starting file transfer process for pattern: $Pattern" $logFile
    
    # List all files in SFTP directory for debugging
    List-SftpFiles -Session $Session -LogFile $logFile
    
    try {
        # First try to list all PDF files
        Write-ToLog "Attempting to list all PDF files..." $LogFile
        $allPdfFiles = $Session.EnumerateRemoteFiles(
            $sftpConfig.RemotePath,
            "*.pdf",
            [WinSCP.EnumerationOptions]::None
        )
        
        # Filter files based on pattern
        $files = $allPdfFiles | Where-Object { 
            $_.Name -like $Pattern.Replace("*", "*") -or 
            ($Pattern -eq "705pdfnd_*.pdf" -and $_.Name -match "705pdfnd_\d+\.pdf")
        }
        
        $filesFound = $false
        foreach ($file in $files) {
            $filesFound = $true
            Write-ToLog "Processing file: $($file.Name)" $logFile
            
            # Extract SNIF number using more flexible pattern matching
            $snif = $null
            if ($file.Name -match '705pdf(?:nd)?_20(\d{2})') {
                $snif = $matches[1]
                Write-ToLog "Extracted SNIF number: $snif" $logFile
            }
            else {
                Write-ToLog "Could not extract SNIF number from filename: $($file.Name)" $logFile
                continue
            }
            
            if ($directories -contains $snif) {
                $year = $date.ToString("yyyy")
                $month = $date.ToString("MM")
                $unique = $date.ToString("yyyyMMdd")
                
                $basePath = "D:\LOCAL-FOLDER\FROM\"
                $targetPath = Join-Path -Path $basePath -ChildPath "$snif\$year\$month\$unique"
                
                Write-ToLog "Processing file $($file.Name) for SNIF: $snif" $logFile
                Write-ToLog "Target path: $targetPath" $logFile
                
                if (-not (Test-Path $targetPath)) {
                    New-Item -ItemType Directory -Path $targetPath -Force
                    Write-ToLog "Created directory: $targetPath" $logFile
                }
                
                try {
                    $transferResult = $Session.GetFiles(
                        "$($sftpConfig.RemotePath)/$($file.Name)",
                        "$targetPath\$($file.Name)"
                    )
                    
                    if ($transferResult.IsSuccess) {
                        Write-ToLog "Successfully downloaded: $($file.Name) to $targetPath" $logFile
                        
                        if ($DeleteAfterDownload) {
                            try {
                                $Session.RemoveFiles("$($sftpConfig.RemotePath)/$($file.Name)")
                                Write-ToLog "Removed $($file.Name) from SFTP server" $logFile
                            }
                            catch {
                                Write-ToLog "Error removing $($file.Name) from SFTP server: $_" $logFile
                            }
                        }
                    }
                    else {
                        Write-ToLog "Failed to download $($file.Name): $($transferResult.Failures)" $logFile
                    }
                }
                catch {
                    Write-ToLog "Error transferring file $($file.Name): $_" $logFile
                }
            }
            else {
                Write-ToLog "SNIF $snif not in allowed directories list" $logFile
            }
        }
        
        if (-not $filesFound) {
            Write-ToLog "No files found matching pattern: $Pattern" $logFile
            Write-ToLog "Note: This could mean either no files exist or pattern matching failed" $logFile
        }
    }
    catch {
        Write-ToLog "Error processing files: $_" $logFile
        throw $_
    }
}

try {
    # delete option 
    $shouldDelete =  $true
    
    # Load WinSCP .NET assembly
    Add-Type -Path "C:\Program Files (x86)\WinSCP\WinSCPnet.dll"
    
    # Setup session options
    $sessionOptions = New-Object WinSCP.SessionOptions -Property @{
        Protocol = [WinSCP.Protocol]::Sftp
        HostName = $sftpConfig.Server
        PortNumber = $sftpConfig.Port
        UserName = $sftpConfig.Username
        Password = $sftpConfig.Password
        SshHostKeyFingerprint = $sftpConfig.SshHostKeyFingerprint
    }
    
    # Create session
    $session = New-Object WinSCP.Session
    
    try {
        # Connect to SFTP
        $session.Open($sessionOptions)
        
        # Process both file patterns
        Process-Files -Session $session -Pattern "705pdf_*.pdf" -DeleteAfterDownload $shouldDelete
        Process-Files -Session $session -Pattern "705pdfnd_*.pdf" -DeleteAfterDownload $shouldDelete
    }
    finally {
        # Cleanup
        $session.Dispose()
    }
    
    # Change to LOCAL-FOLDER directory
    Set-Location -Path "D:\LOCAL-FOLDER"
    Write-Host "Process completed successfully"
}
catch {
    Write-Error "Error in main process: $_"
    exit 1
}
				
			

כתוב את הכותרת כאן

				
					# Load WinSCP .NET assembly
Add-Type -Path "C:\Program Files (x86)\WinSCP\WinSCPnet.dll"
 
# Define variables (unchanged)
$sourceSftpHost = "ftp.domain.com"
$sourceSftpUser = "user1"
$sourceSftpPassword = "pass1"
$destinationSftpHost = "ftp2.domain.com"
$destinationSftpUser = "user2"
$destinationSftpPassword = "pass2"
$localFolder = "D:\LOCAL-FOLDER\FROM\DATA"
$localLogs = "D:\LOCAL-FOLDER\LOG"

# Create a log file with a unique name based on the current date and time
$timestamp = Get-Date -Format 'yyyyMMdd_HHmmss'
$logFile = "$localLogs\SFTP_T705_CSV_Log_$timestamp.log"
Add-Content -Path $logFile -Value "Script started at $(Get-Date)"

# Create local folder structure (unchanged)
$currentDate = Get-Date
$yearFolder = Join-Path -Path $localFolder -ChildPath $currentDate.ToString('yyyy')
$dayFolder = Join-Path -Path $yearFolder -ChildPath $currentDate.ToString('yyyyMMdd')

if (-not (Test-Path -Path $dayFolder)) {
    New-Item -Path $dayFolder -ItemType Directory
    Add-Content -Path $logFile -Value "Created folder: $dayFolder"
}

# Download files from source SFTP (unchanged)
$sourceSessionOptions = New-Object WinSCP.SessionOptions -Property @{
    Protocol = [WinSCP.Protocol]::Sftp
    HostName = $sourceSftpHost
    UserName = $sourceSftpUser
    Password = $sourceSftpPassword
    SshHostKeyFingerprint = "ssh-rsa 2048 number" # Replace with your host key
}

$destinationSessionOptions = New-Object WinSCP.SessionOptions -Property @{
    Protocol = [WinSCP.Protocol]::Sftp
    HostName = $destinationSftpHost
    UserName = $destinationSftpUser
    Password = $destinationSftpPassword
    SshHostKeyFingerprint = "ssh- number" # Replace with your host key
}

# Initialize sessions (unchanged)
$sourceSession = New-Object WinSCP.Session
$destinationSession = New-Object WinSCP.Session

try {
    # Open source SFTP session (unchanged)
    $sourceSession.Open($sourceSessionOptions)
    Add-Content -Path $logFile -Value "Connected to source SFTP."

    # List files in source directory
    $files = $sourceSession.ListDirectory("/folder/DataExport/").Files

    # Open destination SFTP session once
    $destinationSession.Open($destinationSessionOptions)


    foreach ($file in $files) {
        # Skip directories and filter for files starting with "T705file" and ending with ".csv"
        if ($file.IsDirectory -or -not ($file.Name -like "T705file_*.csv")) {
            continue
        }

        # Download file
        $localFilePath = Join-Path -Path $dayFolder -ChildPath $file.Name
        $sourceSession.GetFiles($file.FullName, $localFilePath ,$true)

        Add-Content -Path $logFile -Value "Downloaded: $file.Name to $localFilePath"

        # Upload file to destination SFTP
        $destinationSession.PutFiles($localFilePath, "/sftpfolder/").Check()

        Add-Content -Path $logFile -Value "Uploaded: $file.Name to destination SFTP."
    }
} catch {
    Add-Content -Path $logFile -Value "Error: $_"
} finally {
    # Close sessions (unchanged)
    $sourceSession.Dispose()
    $destinationSession.Dispose()
    Add-Content -Path $logFile -Value "Script finished at $(Get-Date)"
}