The Azure Information Protection client (AIP) for Windows helps you keep important documents and emails safe from people who shouldn't see them, even if your email is forwarded or your document is saved to another location. You can also use this client (AIP) to open documents that other people have protected by using the Rights Management protection technology from Azure Information Protection. Read more information about requirements for AIP https://docs.microsoft.com/en-us/azure/information-protection/get-started/requirements All you need is a computer that runs at least Windows 7 with Service Pack 1 ,then download and install this free AIP client from Microsoft. Before you try…
Author: Eswar Koneti
Introduction: With OneDrive, you can sync files between your computer and the cloud, so you can get to your files from anywhere. You can work with your synced files directly in File Explorer and access your files even when you’re offline. Whenever you’re online, any changes that you or others make will sync automatically. By default ,Onedrive client will be installed on windows 10 and you are required to install only on Windows 7 OS. How to install OneDrive on Windows 7 with detection method using SCCM ,read http://eskonr.com/2017/12/how-to-deploy-onedrive-for-business-using-configmgr/ You can download New OneDrive sync client from https://go.microsoft.com/fwlink/p/?linkid=844652 New…
With the release of SCCM Configmgr current branch 1802 ,there are some exciting features added from its previous version 1710. When there are new features released ,certainly there will be changes to the database hence sql views/tables created which will help us to create some nice SSRS reports for reporting. So with this current branch version 1802 ,what's new in SQL for reporting ? There are about1586 unique SQL views with lots of information that you can retrieve the data from SQL database help you to analyze the data. Out of these SQL view,there are about 19 SQL views…
Microsoft released Configuration Manager Current Branch build version 1802 an in-console update. You can apply this update on sites that run version 1702, 1706, or 1710. This build also available as baseline version which means, you can use this media to install new ConfigMgr sites. You can download the baseline media either from MVLS site .For example, on the VLSC you can search for System Center Config Mgr (current branch and LTSB), and both 1802 and 1702 version baseline media are returned, and available for download. Before you start installing this update as standalone or upgrade, you must go…
Microsoft released an updated version of System Center Updates Publisher (SCUP) version 6.0.278.0 is now available and can be downloaded here. System Center Updates Publisher (Updates Publisher) is a stand-alone tool that enables independent software vendors or line-of-business application developers to manage custom updates. Using Updates Publisher, you can: Import updates from external catalogs (non-Microsoft update catalogs). Modify update definitions including applicability, and deployment metadata. Export updates to external catalogs. Publish updates to an update server. This released version of SCUP adds support for Windows 10 and Windows Server 2016 including following improvements: Indexing for quicker imports of previously imported…
Quick blog post on how to get client count with active obsolete and missing status for collections in a nice tabular column. I used 3 SQL views in this query V_r_system ,v_FullCollectionMembership_valid and v_Collection with sum and case statements. You can use this SQL code in report creation with collection prompt and also create linked reports. select coll.Name [Collection Name],fcm.CollectionID,count(sys.name0) [Total clients], SUM (CASE WHEN sys.Active0 = 1 THEN 1 ELSE 0 END) AS 'Active Clients', SUM (CASE WHEN sys.Obsolete0 = 1 THEN 1 ELSE 0 END) AS 'Obsolete Clients', SUM(CASE WHEN sys.Client0 is NULL THEN 1 ELSE…
Introduction: This is going to be my 2nd or 3rd blog on Azure MFA (Multifactor authentication). Azure MFA is Two-step verification is a method of authentication that requires more than one verification method and adds a critical second layer of security to user sign-ins and transactions. It works by requiring any two or more of the verification methods. You can take one of two approaches for requiring two-step verification. The first option is to enable each user for Azure Multi-Factor Authentication (MFA). When users are enabled individually, they perform two-step verification each time they sign in (with some exceptions,…
Introduction: we are in process of migrating users (mailbox) from on-prem to office 365 (Cloud).As part of this project ,one of the requirement is to deploy office 365 proplus (C2R) application to all users replacing old version of Microsoft Office. We use Powershell Application deployment kit which simplifies the complex scripting challenges of deploying applications in the enterprise, provides a consistent deployment experience and improves installation success rates. Once users have got office 365 proplus and other office 365 components like Microsoft Teams,yammer,Onedrive etc ,there will be final task to migrate user mailbox to cloud. Mailbox migration can be…