Showing posts with label sign. Show all posts
Showing posts with label sign. Show all posts
Wednesday, August 24, 2016
Auto sign in Skype for Business users
Auto sign in Skype for Business users
Beberapa waktu yang lalu saya mencari sebuat informasi agar otomatis Sign-in Lync/Skype pada user Business, dalam kasus saya menggunakan Office 2013, banyak sekali saya menemukan sumber-sumber informasi tapi belum ada satupun yang dapat mengabulkan keingin saya untuk sign-in user bussiness.
Masalahnya adalah ketika anda sign-in untuk contoh pada Office 2013 dengan Skype, Klien bisnis pada Skype akan otomatis mulai tapi ini akan langsung bertanya UPN (User Principal Name),untuk bisa masuk, seperti pada gambar dibawah ini. Dalam kasus saya ini tidak user-friendly jadi kami harus menyelesaikan masalah ini.

Saya menemukan cara dengan pasangan dari kunci registri dengan alat sysinternals procmon.exe dan menbuat file registry untuk di import. Masalah telah membuat beberapa tombol yang diperlukan UPN, jadi masalah ini berakhir dengan script PowerShell.
Catatan! Script ini benar-benar tanpa kontrol error, dan mungkin atau mungkin tidak bekerja di lingkungan Anda, itu tergantung pada setup dan konfigurasi. Hal ini terutama ditulis untuk Office 365 dan layanan tidak di-prem.
Pokoknya ini adalah script yang kita digunakan dan disebarkan kepada pengguna, dan script secara otomatis mengadopsi untuk lingkungan Anda tanpa perubahan.
Happy Skype deployment, please comment if this works or not for you!
Masalahnya adalah ketika anda sign-in untuk contoh pada Office 2013 dengan Skype, Klien bisnis pada Skype akan otomatis mulai tapi ini akan langsung bertanya UPN (User Principal Name),untuk bisa masuk, seperti pada gambar dibawah ini. Dalam kasus saya ini tidak user-friendly jadi kami harus menyelesaikan masalah ini.

Saya menemukan cara dengan pasangan dari kunci registri dengan alat sysinternals procmon.exe dan menbuat file registry untuk di import. Masalah telah membuat beberapa tombol yang diperlukan UPN, jadi masalah ini berakhir dengan script PowerShell.
Catatan! Script ini benar-benar tanpa kontrol error, dan mungkin atau mungkin tidak bekerja di lingkungan Anda, itu tergantung pada setup dan konfigurasi. Hal ini terutama ditulis untuk Office 365 dan layanan tidak di-prem.
Pokoknya ini adalah script yang kita digunakan dan disebarkan kepada pengguna, dan script secara otomatis mengadopsi untuk lingkungan Anda tanpa perubahan.
#Get the current domain
$domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
$domain = DC=$($domain.Name.Replace(.,,DC=))
#Get the current username and SID
$CurrentUsername = $env:USERNAME
$CurrentUserSid = [System.Security.Principal.WindowsIdentity]::GetCurrent().User.Value
#Time to connect to a domain controller and perform a ldap search with either current username or SID
#Only one object will be returned
$Searcher = New-Object DirectoryServices.DirectorySearcher
$Searcher.Filter = (&(objectCategory=person)(objectSid=$($CurrentUserSid)))
#$Searcher.Filter = (&(objectCategory=person)(cn=$($CurrentUsername)))
$Searcher.SearchRoot = LDAP://$($domain)
$User = $Searcher.FindOne()
$CurrentUpn = ([ADSI]$User.Path).userPrincipalName
If ($(Test-Path -Path HKCU:SoftwareMicrosoftOffice15.0Lync) -eq $False) { New-Item HKCU:SoftwareMicrosoftOffice15.0Lync }
New-ItemProperty HKCU:SoftwareMicrosoftOffice15.0Lync -Name FirstRun -Value 1 -PropertyType DWord -Force
New-ItemProperty HKCU:SoftwareMicrosoftOffice15.0Lync -Name SavePassword -Value 1 -PropertyType DWord -Force
New-ItemProperty HKCU:SoftwareMicrosoftOffice15.0Lync -Name ServerSipUri -Value $CurrentUpn -PropertyType String -Force
New-ItemProperty HKCU:SoftwareMicrosoftOffice15.0Lync -Name ServerUsername -Value $CurrentUpn -PropertyType String -Force
New-ItemProperty HKCU:SoftwareMicrosoftOffice15.0Lync -Name IsBasicTutorialSeenByUser -Value 1 -PropertyType DWord -Force
Happy Skype deployment, please comment if this works or not for you!
Available link for download
Sunday, August 21, 2016
How to Enable or Disable Sign in Screen Background Image in Windows 10
How to Enable or Disable Sign in Screen Background Image in Windows 10
Windows 10 has a new sign in screen that is more modern and touch friendly that also uses the Hero wallpaper as the background by default.

In this tutorial we will show you how to enable or disable the sign in screen background image for all users in Windows 10.
Note that you must be signed in as an administrator to be able to enable or disable the sign in screen background image.
So to do that on windows 10 final version you should :
Add and change DWORD value in the registry key below.
HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsSystem
DisableLogonBackgroundImage DWORD
0 or delete = enable
1 = disable

In this tutorial we will show you how to enable or disable the sign in screen background image for all users in Windows 10.
Note that you must be signed in as an administrator to be able to enable or disable the sign in screen background image.
So to do that on windows 10 final version you should :
Add and change DWORD value in the registry key below.
HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsSystem
DisableLogonBackgroundImage DWORD
0 or delete = enable
1 = disable
Available link for download
Subscribe to:
Posts (Atom)