简体   繁体   中英

Powershell return different results running the same script from c#

I am trying to run a simple script for getting file attributes.

string script = @"$path = 'C:\Temp\Indexing\Asm1.asm'
                            $shell = New-Object -COMObject Shell.Application
                            $folder = Split-Path $path
                            $file = Split-Path $path -Leaf
                            $shellfolder = $shell.Namespace($folder)
                            $shellfile = $shellfolder.ParseName($file)                           
                            0..500 | Foreach-Object { '{0} = {1}' -f $shellfolder.GetDetailsOf($null, $_), $shellfolder.GetDetailsOf($shellfile, $_).toString()}";


Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(script);
pipeline.Commands.Add("Out-String");
Collection<PSObject> results = pipeline.Invoke();
runspace.Close();

When running within powershell I get more attribute results which are empty when running it through the code. It seems like an access issue. any help will be much appreciated!

尝试添加#!/usr/bin/env pwsh作为脚本的第一行。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM