User Profile
Arnold
Copper Contributor
Joined Mar 10, 2019
User Widgets
Recent Discussions
How save the img from "[void][Reflection.Assembly] ....... "
Hello, pls how i save the image from ..... the scripte: [void][Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") [void][Reflection.Assembly]::LoadWithPartialName("System.Drawing") $frmMain = New-Object Windows.Forms.Form $xString = @(` ) $imageBytes = [System.Convert]::FromBase64String($xString) $ms = [System.IO.MemoryStream]::new($imageBytes, 0, $imageBytes.Length) $ms.Write($imageBytes, 0, $imageBytes.Length) $pic = [System.Drawing.Image]::FromStream($ms, $true) $picArea = New-Object Windows.Forms.PictureBox $picArea.Dock = "Fill" $picArea.Image = $pic $picArea.SizeMode = "StretchImage" $frmMain.Controls.AddRange(@($picArea)) [void]$frmMain.ShowDialog() Thank for your help Arnold270Views0likes0CommentsRe: Can't export to Excel from a SharePoint list view filtered on a termset column
Hello, Pls I need your help I have Excel 2021 stand Alone. i m not able to start Excel: I have also Win 10; PowerShell vers 7 (i starets with all privilège). I start the scripte with : C:\Users\admin> Get-ExcelFileSummary -Path '.\admin\OneDrive\excel-2021\Mondphasen_test.xlsx' I get this error Get-ExcelFileSummary : Le terme «Get-ExcelFileSummary» n'est pas reconnu comme nom d'applet de commande, fonction, fichier de script ou programme exécutable. Vérifiez l'orthographe du nom, ou si un chemin d'accès existe, vérifiez que le chemin d'accès est correct et réessayez. Au caractère Ligne:1 : 1 + Get-ExcelFileSummary -Path 'C:\Users\admin\OneDrive\excel-2021\Mondph ... + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Get-ExcelFileSummary:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException Tnk for your help Arnold1.7KViews0likes0Comments
Recent Blog Articles
No content to show