• Wyszukiwanie zaawansowane
  • Kategorie
  • Kategorie BISAC
  • Książki na zamówienie
  • Promocje
  • Granty
  • Książka na prezent
  • Opinie
  • Pomoc
  • Załóż konto
  • Zaloguj się

Understanding Microsoft Intune: Deploying Applications Using PowerShell » książka

zaloguj się | załóż konto
Logo Krainaksiazek.pl

koszyk

konto

szukaj
topmenu
Księgarnia internetowa
Szukaj
Książki na zamówienie
Promocje
Granty
Książka na prezent
Moje konto
Pomoc
 
 
Wyszukiwanie zaawansowane
Pusty koszyk
Bezpłatna dostawa dla zamówień powyżej 40 złBezpłatna dostawa dla zamówień powyżej 40 zł

Kategorie główne

• Nauka
 [3090713]
• Literatura piękna
 [1812092]

  więcej...
• Turystyka
 [52353]
• Informatyka
 [156406]
• Komiksy
 [36497]
• Encyklopedie
 [23076]
• Dziecięca
 [611051]
• Hobby
 [103270]
• AudioBooki
 [1744]
• Literatura faktu
 [194823]
• Muzyka CD
 [382]
• Słowniki
 [2994]
• Inne
 [446649]
• Kalendarze
 [242]
• Podręczniki
 [166396]
• Poradniki
 [420635]
• Religia
 [508575]
• Czasopisma
 [545]
• Sport
 [61132]
• Sztuka
 [249371]
• CD, DVD, Video
 [3442]
• Technologie
 [230899]
• Zdrowie
 [98302]
• Książkowe Klimaty
 [126]
• Zabawki
 [2532]
• Puzzle, gry
 [4027]
• Literatura w języku ukraińskim
 [273]
• Art. papiernicze i szkolne
 [8376]
Kategorie szczegółowe BISAC

Understanding Microsoft Intune: Deploying Applications Using PowerShell

ISBN-13: 9781484288498 / Angielski / Miękka / 2022 / 183 str.

Owen Heaume
Understanding Microsoft Intune: Deploying Applications Using PowerShell Owen Heaume 9781484288498 Apress - książkaWidoczna okładka, to zdjęcie poglądowe, a rzeczywista szata graficzna może różnić się od prezentowanej.

Understanding Microsoft Intune: Deploying Applications Using PowerShell

ISBN-13: 9781484288498 / Angielski / Miękka / 2022 / 183 str.

Owen Heaume
cena 128,16
(netto: 122,06 VAT:  5%)

Najniższa cena z 30 dni: 123,66
Termin realizacji zamówienia:
ok. 16-18 dni roboczych.

Darmowa dostawa!

Beginner

Learn to deploy simple and complex applications that are beyond the scope of default Intune application deployment scenarios and limitations. This book will help you deploy applications using a PowerShell script.
The book starts with PowerShell Cmdlets to get an understanding of deployment through PowerShell scripts. Next, you will learn how to work with msiexec where you will learn which properties of your MSI can be set and what values can be passed to them, even if you do not know what the properties and values initially are.

Further, you will learn how to install and uninstall a Setup.exe and how to determine the silent switches, along with MSI extraction methods. You will then learn detection rules using PowerShell, including how to detect by registry or application version and build numbers as well as using custom PowerShell detection rules. You will then gain an understanding of the location to run the script. Moving forward, you will go through installing a program by calling MSI or Setup.exe using PowerShell and how to handle spaces in the filenames.

Following this, you will go through how to deploy the various script types in Intune; whether it is a standard script, or if the whole script is a function or contains functions, or if it has an entry point. Deployment Templates and application preparation in Intune are discussed next, along with the process to create the .Intunewin with the Intune Winapp Util. You will then learn how to uninstall previous applications before a new deployment. You'll also be walked through useful snippets and examples of deployment where you will be able to utilize all the aspects of deployment in Intune discussed in prior chapters.

After reading the book, you will be able to manage application deployments and detection rules using PowerShell with Microsoft Intune.

What You Will Learn:
  • How to find valid properties and values to use with msiexec
  • Using PowerShell for detection rule
  • Deploying using a template for reliable and repeatable deployments
  • How to create the Windows App (Win32) App 
Who Is This Book For:
I.T Professionals who manage application deployments using Microsoft Intune.

Kategorie:
Informatyka, Bazy danych
Kategorie BISAC:
Computers > Programming - Microsoft
Wydawca:
Apress
Język:
Angielski
ISBN-13:
9781484288498
Rok wydania:
2022
Dostępne języki:
Ilość stron:
183
Waga:
0.29 kg
Wymiary:
23.39 x 15.6 x 1.09
Oprawa:
Miękka
Dodatkowe informacje:
Wydanie ilustrowane

Chapter 1: PowerShell Cmdlets 


The Twelve Cmdlets Write-Host 
Set-Location 
Get-Process 
Stop-Process Start-Process 
New-Item New-Item
Property Get-Item Copy-Item Test-Path
 Try \ Catch block 

Chapter 2: MSIEXEC

Fundamentals View the Help Where Is It? 
Better to use $Env: Parameters 
Installation Silent Install No Restart Uninstall Properties 
Which Properties Can Be Set? 
How to Find Valid Property Values Uninstall GUIDs 32-bit Installations 64-bit Installations 

Chapter 3: Setup.exe 
Discovering the Setup.exe silent Install \ Uninstall parameters 
EXE’s Have Registry Information Too 
In-Built Help 
Internet Search MSI Extraction 
MSI Extraction Method #1 
MSI Extraction Method #2 
Example MSI Extraction 

Chapter 4: Detection Rules 

Why Use PowerShell? 
Detection Fundamentals 
The Microsoft Rules In Practice 
Where Do I put My Detection Rules Anyway? 
Silently Continue Detection Types File \ Folder 
Presence Executable Version 
Hey! Where’s the Build Number? 
Registry Subkey 
Registry Value \ Data Pair Custom Detection 
Why Use Custom Detection? 
Custom File Detection 
Custom Registry Detection 
Final Thoughts on Custom Detection 
Branching By Office Bitness
 If This, Then That This and This 

Chapter 5: Location 
Where Is This Script Running from Anyway? 
How We Used to Do Things A Better Way 
File Placement 
Where to Place Your Files for Deployment 
Referencing Files 
Referencing Files in a Flat Structure 
Referencing Files in Subdirectories 
If You’re Elsewhere… 

Chapter 6: Installing the Program 
Calling the MSI or Setup.exe 
Start Your Engines 
Please Parameters -FilePath 
NoNewWindow 
Wait Dealing with Spaces 
Putting It All Together
 Example 1 - Simple MSI 
Example 2 - MSI with Properties 
Example 3 - Setup.Exe 

Chapter 7: Deploying the Script 
Sys What Now? 
In Practice 
Calling Your Script 
Standard Script (Top to Bottom) 
Script with Entry Point Function 
Function Accepting Parameters 
Example: Deploying a Script Containing Two Functions Remote Server Administration Tools 

Chapter 8: Deployment Template 
How to Use Deploying Based on Office ‘Bitness’ 
Deploying Based on Operating System Architecture 
Pre-Deployment Tasks 
Post-Deployment Tasks 
Logging 
How to call the Template Final Thoughts 

Chapter 9: Application Preparation in Intune
Download the Tool Prep for Prep 
Adding Your Content 
Creating the .Intunewin 
What’s in a Name? 

Chapter 10: Uninstall an Application   
The Function 
How it Works Exactly! 
Test Run 
How to Use 

Chapter 11: Useful Code Snippets   
Detect Office ‘Bitness’ 
Detect Operating System Architecture 
Obtaining the Current Logged in User Name 
Copying Files Register \ Unregister DLL files 

Chapter 12: Example Deployment 
Start to Finish Scenario 
Determine the Command Line Parameters and Values Captain’s Log 
Sanity Check Invoke-Application 
Install Detection 
Script Input and Output 
Create the .IntuneWin File 
Create the Windows App (Win32) App 
Information Program Requirements 
Detection Rules 
Dependencies Assignments Review + create 
Install the Application 
Inspecting the Application 
Installation Log File

Owen Heaume is a senior network administrator for a global company based in the UK’s headquarters. He has over 20 years of networking experience across Novell and Microsoft technologies and has acquired a variety of professional technical qualifications. He enjoys writing blogs and information on ConfigMgr and PowerShell scripting. Owen has also published books on ConfigMgr for deploying applications, language and regional settings. 

Learn to deploy simple and complex applications that are beyond the scope of default Intune application deployment scenarios and limitations. This book will help you deploy applications using a PowerShell script.

The book starts with PowerShell Cmdlets to get an understanding of deployment through PowerShell scripts. Next, you will learn how to work with msiexec where you will learn which properties of your MSI can be set and what values can be passed to them, even if you do not know what the properties and values initially are. Further, you will run the Setup.exe for installation and un-installation of parameters along with MSI extraction. You will then learn detection rules using PowerShell and gain an understanding of the location to run the script. Moving forward, you will go through installing a program by calling MSI or Setup.exe in Intune. Following this, you will go through a demonstration of deploying a script containing functions. Deployment Templates and application preparation in Intune are discussed next, along with the process to create the .Intunewin with tool prep. You'll also be walked through useful snippets and examples of deployment where you will be able to utilize all the aspects of deployment in Intune discussed in prior chapters.

After reading the book, you will be able to manage application deployments and detection rules using PowerShell with Microsoft Intune.

You will:
  • Find valid properties and values to use with msiexec
  • Use PowerShell for detection rule
  • Deploy using a template for reliable and repeatable deployments
  • Create the Windows App (Win32) App



Udostępnij

Facebook - konto krainaksiazek.pl



Opinie o Krainaksiazek.pl na Opineo.pl

Partner Mybenefit

Krainaksiazek.pl w programie rzetelna firma Krainaksiaze.pl - płatności przez paypal

Czytaj nas na:

Facebook - krainaksiazek.pl
  • książki na zamówienie
  • granty
  • książka na prezent
  • kontakt
  • pomoc
  • opinie
  • regulamin
  • polityka prywatności

Zobacz:

  • Księgarnia czeska

  • Wydawnictwo Książkowe Klimaty

1997-2026 DolnySlask.com Agencja Internetowa

© 1997-2022 krainaksiazek.pl
     
KONTAKT | REGULAMIN | POLITYKA PRYWATNOŚCI | USTAWIENIA PRYWATNOŚCI
Zobacz: Księgarnia Czeska | Wydawnictwo Książkowe Klimaty | Mapa strony | Lista autorów
KrainaKsiazek.PL - Księgarnia Internetowa
Polityka prywatnosci - link
Krainaksiazek.pl - płatnośc Przelewy24
Przechowalnia Przechowalnia