Search found 16 matches

by olivier56
Thu Aug 03, 2023 2:42 am
Forum: PowerShell GUIs
Topic: get-vm
Replies: 2
Views: 1588

get-vm

get-vm |Format-List vmname ,vmid

can t have in datagridview

how i can have vmname and vmid in datagridview
br
by olivier56
Mon May 22, 2023 12:07 am
Forum: PowerShell GUIs
Topic: datagridwiew result
Replies: 5
Views: 959

Re: datagridwiew result

I changed the code variable
and it only shows me the length of the result string
by olivier56
Mon May 22, 2023 12:01 am
Forum: PowerShell GUIs
Topic: datagridwiew result
Replies: 5
Views: 959

Re: datagridwiew result

hi thank you but don t work my code $rules = Get-NetFirewallRule $DisplayGroups = foreach ($rule in $rules) { $rule.displaygroup } $DisplayGroups | Select-Object -Unique Update-DataGridView -DataGridView $datagridview1 -Item $DisplayGroups Update-DataGridView: Failed to validate argument on paramete...
by olivier56
Wed May 17, 2023 12:17 am
Forum: PowerShell GUIs
Topic: datagridwiew result
Replies: 5
Views: 959

datagridwiew result

hi

I can't get the result of my script in the datagridview.
I would like it to display the displayname value in the datagridview
THANKS



$rules=Get-NetFirewallRule
$DisplayGroups=foreach ($rule in $rules){$rule.displaygroup}
$DisplayGroups | Select-Object -Unique
by olivier56
Wed Oct 26, 2022 11:58 pm
Forum: PowerShell GUIs
Topic: opendialogbox
Replies: 2
Views: 596

opendialogbox

hi,
i would like have only the name of selected object and note the complet name in text.

$openfiledialog1.ShowDialog()
$textbox1.Text=$openfiledialog1.FileName
$textbox1.Text "C:\Program Files\Angry IP Scanner\ipscan.exe" i just need "ipscan.exe"

br
by olivier56
Fri Mar 11, 2022 4:47 am
Forum: Installation Issues
Topic: can t acivate licence
Replies: 1
Views: 6902

can t acivate licence

hi

i download on new pc and install sapiens.

i put my username key and password.

when i want to activate, say invalid password or username...

i don t understand

br
by olivier56
Mon May 03, 2021 10:33 am
Forum: PowerShell Studio
Topic: use github with sapine
Replies: 1
Views: 4504

use github with sapine

To help you better we need some information from you. *** Please fill in the fields below. If you leave fields empty or specify 'latest' rather than the actual version your answer will be delayed as we will be forced to ask you for this information. *** Product, version and build:2021 Operating syst...
by olivier56
Mon Jan 18, 2021 5:35 am
Forum: PowerShell GUIs
Topic: persitence cheked checklistbox
Replies: 3
Views: 1216

Re: persitence cheked checklistbox

hi

work fine

Code: Select all

$EmplacementFichier2 = [string]
	$EmplacementFichier2 = "d:\test.txt"
	$MyArray= get-content $EmplacementFichier2
	foreach ($Item in $MyArray)
	{
		# Check it ...
		$CheckedListBox1.SetItemChecked($checkedlistbox1.Items.IndexOf($Item), $true);
	}
	


by olivier56
Sat Jan 16, 2021 12:21 pm
Forum: PowerShell GUIs
Topic: persitence cheked checklistbox
Replies: 3
Views: 1216

Re: persitence cheked checklistbox

ok
thank you

if i use ini file or registrery may be

br
by olivier56
Sat Jan 16, 2021 7:43 am
Forum: PowerShell GUIs
Topic: persitence cheked checklistbox
Replies: 3
Views: 1216

persitence cheked checklistbox

Hello,
it is possible to leave the boxes checked after closing the interface and then opening it again.
thank you