无法从powershell启动chrome ..任何想法

时间:2017-09-19 22:10:29

标签: powershell google-chrome

我打开了这个,因为我使用业力的测试没有正常工作来启动chrome并运行测试。当我尝试时,我在无响应的chrome会话中遇到黑屏。

我知道业力可能与我的问题无关。从powershell时期开始,Chrome看起来并不起作用。

-- sample data
declare @table table 
(
  id int identity, 
  col1 varchar(10), 
  col2 varchar(10),
  col3 varchar(10)
);

insert @table (col1, col2, col3) 
values ('a','b','c'), ('aa','bb',''), ('x','','z'), ('','p','pp'), 
       ('!!!','',''), ('','','fff'), ('','','');

-- My solution
select col1, col2, col3, concatinatedValue = 
  case when cv like '.%' then stuff(cv, 1, 1,'') else cv end
from @table
cross apply (values 
  (isnull(nullif([col1],''), '') +
   isnull('.'+nullif([col2],''), '') +
   isnull('.'+nullif([col3],''), ''))) v(cv);

将启动损坏的chrome会话。

所以,我猜测业力与它无关。它看起来像chrome / powershell问题。

有什么想法吗?

Powershell(%SystemRoot%\ system32 \ WindowsPowerShell \ v1.0 \ powershell.exe)和64位chrome。

1 个答案:

答案 0 :(得分:0)

试一试,看看实际启动过程是否会产生不同的行为。

Start-Process -FilePath "${env:ProgramFiles(x86)}\Google\Chrome\Application\chrome.exe"