GVKun编程网logo

Windows 10 PC上的Office Web Apps广告(微软office广告)

6

在这篇文章中,我们将为您详细介绍Windows10PC上的OfficeWebApps广告的内容,并且讨论关于微软office广告的相关问题。此外,我们还会涉及一些关于(原)用WebBrowser浏览O

在这篇文章中,我们将为您详细介绍Windows 10 PC上的Office Web Apps广告的内容,并且讨论关于微软office广告的相关问题。此外,我们还会涉及一些关于(原)用WebBrowser浏览Office Web Apps Server,除去“下载”按钮、DzzOffice结合office web Apps私有部署的实例、Microsoft Office Apps出现在Windows 10上的原因不明、Microsoft shows off how containerized apps will work in Windows 10X的知识,以帮助您更全面地了解这个主题。

本文目录一览:

Windows 10 PC上的Office Web Apps广告(微软office广告)

Windows 10 PC上的Office Web Apps广告(微软office广告)

如果您运行的是最新的Windows10 PC,即使您没有安装程序,也可能会在开始菜单或已安装程序列表中注意到Outlook,PowerPoint,Excel或Word的新列表。昨天,这是在运行Windows10版本2004的稳定Windows10 PC上发生的,并且报告通过Internet传播,许多用户受到了影响。

主要问题之一是微软根本没有提到这一点。它没有发布公告,也没有发布在公司的Windows Experience博客上,也没有发布我所知的其他地方。注意到应用程序的用户(实际上是Web链接,但稍后会详细介绍)可能会怀疑它们是正版还是恶意软件,以及他们最初是如何登陆系统的。

分析已安装的程序时,您会注意到几件事:

• 发布者不是Microsoft Corporation,而是“ Outlook”,“ PowerPoint”,“ Excel”和“ Word”。

• 所有应用程序都列出了1.0版,没有大小信息,并且安装日期相同。

• 每个应用程序都有一个点作为图标。

• 所有这些都可以卸载。

• 当您检查文件属性时,您会注意到它们是使用Microsoft Edge的Web快捷方式,例如“ C: Program Files(x86) Microsoft Edge Application msedge_proxy.exe” --profile-directory = Default- app-id = bjhmmnoficofgoiacjaajpkfndojknpb --app-url = https://outlook.com/

当您尝试删除列出的程序之一时,会出现“从Microsoft Edge删除”提示;这确认这些应用程序已链接到Microsoft Edge。

快速检查Microsoft Edge的已安装应用程序部分,确认这些应用程序已在浏览器中列出,并且可以通过单击页面上的x-icon从浏览器中删除。

执行时,快捷方式会在桌面上的无边框Microsoft Edge窗口中打开Office Web Apps。它们看起来是真实的而不是恶意的。

不需要这些的用户可以从Edge内或使用“设置”应用程序/“程序”控制面板小程序来卸载PWA应用程序。

总结

未经同意或没有信息将程序添加到用户的设备总是有问题的。尽管在安装功能更新后,从操作系统中添加或删除应用程序已成为Microsoft的第二天性,但是添加与任何更新安装无关的应用程序对于公司来说是一个新的低点,尤其是在没有与公司进行任何沟通的情况下。

留给用户找出发生了什么以及应用程序是否为真品的信息。虽然它们是正版,但无非就是将公司的Office Web Apps的广告推送到用户系统。

(原)用WebBrowser浏览Office Web Apps Server,除去“下载”按钮

(原)用WebBrowser浏览Office Web Apps Server,除去“下载”按钮

对,没错,如果你按关键字找到这篇随笔了,相信一定知道背景,以及我所说的是什么。


上一段子代码。

private void timerHideButton_Tick(object sender, EventArgs e)
        {
            try
            {
                HtmlDocument htmlDoc = webBrowser.Document;
                if (webBrowser.Document != null) 
                    htmlDoc = webBrowser.Document.Window.Frames["wacframe"].Document;
                if (htmlDoc == null)
                    return;

                var toolBar = htmlDoc.GetElementById("PptUpperToolbar.LeftButtonDock");    //PPT、PPTX
                if (toolBar == null)      
                    toolBar = htmlDoc.GetElementById("stripLeft");                 //DOC、DOCX、PDF
                if (toolBar == null)
                    toolBar = htmlDoc.GetElementById("m_excelWebRenderer_ewaCtl_stripLeft"); //XLS、XLSX

                if (toolBar != null)
                {
                    toolBar.InnerHtml = "";
                    timerHideButton.Enabled = false;
                }
            }
            catch (Exception ex)
            {
               Console.WriteLine(ex.Message);
            }
        }

  张三问了:还用个Timer,不科学,你应该把代码放到
                         webBrowser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e);

       回答:原先我也是这么想的,但是、可是因为 iframe 的原因,Completed事件可能会被激活多次,并且直到最后一次也不能准确得到预期结果。

DzzOffice结合office web Apps私有部署的实例

DzzOffice结合office web Apps私有部署的实例

很多朋友都想在自己使用的DzzOffice中,调用本地部署的office web Apps server。

下面我就直接从头到尾的将部署全部过程分享给大家。

准备条件:两台服务器,配置稍高点,以免卡顿现象或者不流畅,一台用于安装域控制器,另一台安装office web Apps server服务器(最好安装server 2012版本已经集成了安装环境,无需另外配置IIS 等参数)。  

一、安装域控制器,此域控制器是用于内网使用,也就是内网域名。方便与内网访问,后面第三方调用的时候其实不需要域控制器,只是office web apps server 本身需要调用,其计算机只需要计算机名就可以正常调用。域控制器在这里就不敷述了!

二、安装office web Apps server 在文集当中也包含了安装方法,也不敷述了!

主要就是主程序的安装和中文语言包的安装

三、主要内容是调试阶段这里也是大多数朋友遇到的最大问题。下面我就将自己的经验分享给大家。

1、安装完office web apps server 后请先看下面内容再操作,以免弯路。

2、我们在安装完后打开服务器的 Windows PowerShell 在里面先输入:  get-help office (划线部分)可以看到下图

图中显示的是关于office web apps server 的所有命令:后面的设置都要使用到它。

然后我们继续输入

New-OfficeWebAppsFarm–InternalURL"http://OfficeWebApps.veekee.cn" –AllowHttp –EditingEnabled  -OpenFromUrlEnabled

意思是部署使用 HTTPS 的、包含一台服务器的 Office Web Apps Server 场,最后一个参数为打开外部访问,不然外网无法访问你的服务器。

这里的http://OfficeWebApps.veekee.cn是你的服务器域名也就是

这里的计算机名(是要加入域以后的哦)。输入完成后按回车键,系统会提示按y键确认,然后稍等一会儿就会出现配置图

然后我们会看到如下图

到这里基本服务器设置完毕了

下面就是DzzOffice的配置了

至此完毕了。可能有的朋友在这里访问的时候还是不能打开,要保证80 443 809端口不被占用,如果还是打开失败,请注意,请访问你的DzzOffice的时候请以计算机名的方式访问,而不是IP地址。我之前就是卡在这里好久了,就是无法打开文档。

http://192.168.1.1/dzz/

http://apps/dzz

以上两个地址是一个服务器,但是在要调用office web Apps server的时候第二个就可以访问,而第一个却无法访问。

 

附两篇可能用到的教程:

微软对office的配置命令帮助 http://technet.microsoft.com/zh-cn/library/ee890080(v=office.15).aspx

Windows Server 2012部署域控制器 http://www.it165.net/os/html/201212/4274.html 

Microsoft Office Apps出现在Windows 10上的原因不明

Microsoft Office Apps出现在Windows 10上的原因不明

Microsoft Office PWA允许您直接从桌面访问Word,Excel和PowerPoint的在线版本,这些都由Windows 10上选择的浏览器提供支持。

报告显示Office PWA最终安装在Windows 10上

但是,PWA的设计方式要求用户手动访问提供此类应用程序的网站,然后手动请求安装。换句话说,如果您希望Office PWA出现在Windows 10桌面上,则需要使用支持PWA的浏览器(例如Google Chrome或Microsoft Edge)连接到生产力套件的在线版本,然后手动选择安装应用程序。

不过,据BornCity称,最近在一系列Windows 10设备上发生了一些奇怪的事情。

更具体地说,Microsoft Office PWA最终由于没有明确的原因而安装在Windows 10计算机上,即使没有用户明确要求全部内容。

没人能肯定如何做到这一点,但从外观上看,所有PWA都已于10月10日安装在这些Windows 10计算机上。在“开始”菜单中创建了Word,Excel,PowerPoint和Outlook的专用条目,所有应用程序也都出现在“最近安装”部分的下方。

Microsoft Office Apps出现在Windows 10上的原因不明

不用说,那些不希望在其设备上安装PWA的人可以简单地将其删除,但是另一方面,Microsoft在没有先询问用户的情况下安装PWA可能会对基于Redmond的软件巨头产生更多的批评。

该公司没有提供确切原因的解释,因此我与该公司联系,要求提供更多详细信息,如果提供了答案,则将更新该帖子。

在这一点上,尚不清楚谁拥有Office PWA,谁没有。我检查了Windows 10设备,尽管我确实有Office 365订阅,但没有一个收到这些不需要的应用程序,因此我的计算机上已经安装了Word,Excel和PowerPoint等应用程序。

正如前面提到的资料所述,Windows 10设备上Office应用程序的这种意外安装可能在某种程度上与Microsoft Edge的Office加载项有关。

从外观上看,Windows 10上所有静默安装的PWA均来自Microsoft Edge,这是该公司将其配置为操作系统默认选项的新浏览器。因此,从理论上讲,PWA是通过Edge提供的,尽管现在,我们仍然不知道在未将Microsoft浏览器设置为默认值的计算机上是否也会发生这种情况。

BornCity建议,Edge的Office加载项可能是罪魁祸首,尽管从其官方页面上发布的信息来看,最后一次更新于10月12日发布,而所有PWA均于两天前的10月10日安装在Windows 10上。

另一方面,提供对Office应用程序的访问正是Edge插件的目的。

“ Office浏览器扩展程序在Microsoft Edge工具栏上放置了一个图标,可让您直接访问Office文件,无论它们是在线存储还是在计算机上存储。Office Web扩展程序可以打开存储在OneDrive和OneDrive for Business中的文件。您无需安装Office就可以在浏览器中直接获得Word,Excel,PowerPoint,OneNote和Sway的功能。”

在这一点上,一切仍然是模糊的,因此还有待观察Office应用程序如何突然在Windows 10计算机上结束。目前,好消息是只需单击几下就可以消除所有问题,尽管不用说这不一定很方便,因为没有人首先要求安装应用程序。

Microsoft shows off how containerized apps will work in Windows 10X

Microsoft shows off how containerized apps will work in Windows 10X

http://www.zdnet.com/article/microsoft-shows-off-how-containerized-apps-will-work-in-windows-10x/


m365devstory10x.jpg

Credit: Microsoft

Windows 10

  • Now that Windows 7 support has ended, your business has four options
  • Revived Windows 95 PowerToys lets you create Windows 10 keyboard shortcuts
  • Microsoft to combine its Windows client and hardware teams under Chief Product Officer Panos Panay
  • Best laptop deals: Windows and Chromebooks for under $500 (CNET)
  • Microsoft Teams: A cheat sheet (TechRepublic Premium)

Microsoft is continuing to unfurl its dual-screen Windows and Android device story. On February 11, Microsoft is focusing primarily on the Windows piece of its strategy, making available its promised Windows 10X emulator and software development kit (SDK) for dual-screen Windows devices like its coming Surface Neo dual-screen tablet and various third-party foldables and new form factors.

Microsoft initially took the public wraps off Windows 10X, a variant of Windows 10 initially targeted for dual-screen devices, in October 2019, though leaks about its so-called "Santorini"/"Lite" platforms had been circulating for the last couple of years. On February 11, during its Microsoft 365 Developer Day virtual event, Microsoft is providing more details on what 10X is and how it will work.

As rumored for months, containers are a key to the 10X platform. 



Microsoft is planning to require every Windows 10X app -- Win32, Universal Windows Platform (UWP) and Web apps -- to run in containers as a way to better secure and improve the performance of devices running Windows 10X. The 10X container (codenamed "Vail") is similar to -- though not the same as -- the lightweight VMs/container model used by Microsoft''s Windows Subsystem for Linux. The 10X container will include a lightweight version of Windows (Win32), which will be loaded only by those apps which require it. In some cases, shims, or programming interfaces meant to assist with compatibility, also will play a role in enabling apps like the new Edge browser and Microsoft''s own Office apps, to run on 10X. 

Update: Thanks to a presentation discovered by The Walking Cat, here''s some more 10X container info. There are three types of containers in Windows 10X: Win32, MSIX and Native (UWP). MSIX and native containers already exist. Win32 containers are meant to provide the highest compatibility levels for existing apps, including Win32, WinForms, WPF and Electron apps. It provides an environment similar to a desktop OS. A single Win32 container will run all Win32 apps on 10X.  

Microsoft''s goal is to ensure that most existing Windows applications will "just work" with no developer modifications required, on Windows 10X. For developers who are interested in making their applications work better and in a more customized way on 10X, Microsoft is making available the programming interfaces, information about hinge positions, transitions and new proposed Web standards in that space.

In addition to releasing early versions of the 10X emulator and SDK today, Microsoft also is refreshing the already-available SDK for its Android-based Surface Duo device. The preview SDK for Duo, as of today, will include all of Microsoft''s Java native samples as Kotlin samples; drag and drop support for helping with moving data between two apps on dual-screen devices; and support for Android Sutdio, Visual Studio and Visual Studio Code users on macOS and Ubuntu Linux and Windows.

While the smaller Duo (which Microsoft doesn''t want users to call a phone, but which will have telephony capabilities) and the larger dual-screen Neo will run different operating systems underneath, Microsoft is trying to emphasize the commonalities of the two platforms. Microsoft is touting its dual-screen SDK for Xamarin Forms as a tool for building apps across both Windows 10X and Android, for example. And the user experiences on the Duo and Neo, in many ways, look more similar than different, at least to my non-design-noticing eye.





Microsoft''s pitch for both kinds of dual-screen devices isn''t just that more screen real estate is better. It also is trying to build a case that users can be more productive when using two side-by-side, connected screens than a single screen because they can stay in their "flow" and not have to switch between apps.

It''s not just on the use-case front where Microsoft has its work cut out for it with dual-screen devices. Microsoft also has some big execution challenges with its dual-screen devices is an understatement. 

Microsoft has said both the Surface Duo and the Neo will be available for purchase in time for holiday 2020 and seems to be sticking with that commitment. This doesn''t seem like a stretch for the Surface Duo, which is basically a plain-vanilla Android device with some Microsoft extensions. The Duo emulator is the existing Android Studio emulator. 

The Surface Neo, though a Windows 10 device using a Microsoft-built emulator, will be expected by most customers to run all Windows apps. I''ve heard that in its own internal testing so far, Microsoft has not found providing Win32 app compatibility to be a slam-dunk. Because the Win32 subsystem running in the container in 10X isn''t a full operating system implementation, more than a few existing Win32 apps don''t run well or at all. 

In addition, Microsoft also is in the midst of trying to figure out what to do about app distribution. As I''ve reported previously, Microsoft has been stepping back from requiring Windows 10 apps to be delivered via the Microsoft app store. During today''s Microsoft 365 Developer Day, I''m not expecting Microsoft to talk about its plans to deprecate the Microsoft Store for Business and Store for Education. 

However, there may be some talk today during the virtual developer event about how the company is devising a new model for application reputation, as officials hinted last year would be happening. Microsoft needs to build an app reputation system that will help customers know that apps are trustworthy and safe to download. Microsoft is expected to make this new app-reputation model a built-in part of Windows 10X and subsequently make it available across the entire ecosystem, from what I''ve heard.

Microsoft is looking for developer feedback on its dual-screen vision and deliverables, in earnest, starting today. Windows 10X testers, start your engines.

关于Windows 10 PC上的Office Web Apps广告微软office广告的问题我们已经讲解完毕,感谢您的阅读,如果还想了解更多关于(原)用WebBrowser浏览Office Web Apps Server,除去“下载”按钮、DzzOffice结合office web Apps私有部署的实例、Microsoft Office Apps出现在Windows 10上的原因不明、Microsoft shows off how containerized apps will work in Windows 10X等相关内容,可以在本站寻找。

本文标签: