英文:
Trying to launch Microsoft Edge Chromium in a new process for Java App-V
问题
我们正在尝试从Internet Explorer迁移到Microsoft Edge Chromium。我们有一些需要Java的应用程序,过去我们使用Internet Explorer Web应用程序快捷方式,并使用"-noframemerging"参数,以便为某些应用程序侧载Java App-V。
我似乎找不到在Microsoft Edge Chromium中使这个工作的方法,问题在于如果用户已经打开了一个Microsoft Edge Chromium窗口,然后打开需要Java的Web应用程序快捷方式,Java App-V 将不会加载,因为它将在已经存在的同一进程中打开。
有人有任何想法如何解决这个问题吗?
英文:
We are trying to migrate from internet explorer to Microsoft Edge chromium. We have a couple applications which require Java, we used to have internet explorer web application shortcuts using the "-noframemerging" paramater so we can sideload Java App-V for certain applications.
I can't seem to find a way to get this to work in Microsoft Edge Chromium, the problem is if a user already has a Microsoft Edge chromium window open and he opens the web application shortcut which require java, java app-v won't be loaded cause it will open in the same process that already exist.
Does anyone have any idea how to solve this?
答案1
得分: 1
如果您想要在每个进程中隔离应用程序,我建议您可以尝试使用 --site-per-process 命令行开关。
您可以按照以下步骤应用命令行开关:
- 创建 MS Edge Chromium 浏览器的快捷方式。
- 然后尝试右键单击快捷方式,进入属性。
- 转到“快捷方式”选项卡。
- 在目标字段中,在 Edge exe 的路径后面添加 --site-per-process。确保路径和此参数之间有一个空格。
- 单击“确定”按钮。
您可以尝试测试此方法,并告诉我们您的测试结果。
英文:
If you are trying to isolate applications in each process then I suggest you can have a test with --site-per-process command-line switch.
You can refer to the steps below to apply the command line switch.
- Create a shortcut of the MS Edge Chromium browser.
- Then try to right-click on the shortcut and go to properties.
- Go to the Shortcut tab.
- In the target field, try to add --site-per-process after the path of Edge exe. make sure there is one space between the path and this argument.
- Click on the OK button.
You can try to test this approach and let us know about your testing results.
答案2
得分: 0
开始 Edge 并使用独立配置文件(--profile-directory)
在启动 Edge 之前创建配置文件文件夹。
英文:
Start Edge with a separate profile ( --profile-directory )
Create the profile folder before starting Edge.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论