Tips excel

Auto formatowanie Komórek

Vba Wybierz  >  Worksheet >  wpisz

Cells.EntireColumn.AutoFit

Zamknij i wprowadzaj

 

Subiekt hasło szefa

Zmiana reset, hasła Szefa można wykonać za pomocą polecenia z linii poleceń SQL

W sytuacji gdy masz dostęp do SA a tymczasowo potrzebujesz musisz wykonać jakieś polecenie z uprawnieniami Szefa możesz je tymczasowo zmienić a następnie cofnąć hasło do pierwotnego stanu:

 

1) Zapisujemy aktualne hasło Szefa, pobierajac je następującym poleceniem.

SELECT uz_haslo FROM pd_uzytkownik WHERE uz_identyfikator = 'SF’;

 

2) Czyscimy hasło poniższym poleceniem.
UPDATE pd_uzytkownik SET uz_haslo = ” WHERE uz_identyfikator = 'SF’;

3) Logujemy się na użytkownika SZEF z pustym hasłem

4) Przywrócić zapisane hasło Szefa.
UPDATE pd_uzytkownik SET uz_haslo = 'Pobrane w punkcie 1 hasło’ WHERE uz_identyfikator = 'SF’;

PowerShell Script, aby usunąć kopie w tle w ciągu 30 dni (deletes all shadow copies)

PowerShell
#PowerShell Script  
#This script deletes all shadow copies older than 30 days 
#By Wayne Johnson 
 
Get-WmiObject Win32_Shadowcopy | ForEach-Object { 
 
$WmiSnapShotDate = $_.InstallDate 
$strShadowID = $_.ID 
$dtmSnapShotDate = [management.managementDateTimeConverter]::ToDateTime($WmiSnapShotDate)  
$strClientAccessible = $_.ClientAccessible 
$dtmCurDate = Get-Date 
 
$dtmTimeSpan = New-TimeSpan $dtmSnapShotDate $dtmCurDate  
$intNumberDays = $dtmTimeSpan.Days 
 
If ($intNumberDays -ge 31 -and $strClientAccessible -eq "True") { 
   
  $_.Delete() 
} 
 
} 

Powerhell SMB

SERWER

 

Windows 8 and Windows Server 2012 introduced the new Set-SMBServerConfiguration Windows PowerShell cmdlet. The cmdlet enables you to enable or disable the SMBv1, SMBv2, and SMBv3 protocols on the server component.

You don’t have to restart the computer after you run the Set-SMBServerConfiguration cmdlet.

 

SMBv1

  • Detect:PowerShell
  • Get-SmbServerConfiguration | Select EnableSMB1Protocol
    
  • Disable: PowerShell
  • Set-SmbServerConfiguration -EnableSMB1Protocol $false
    
  • Enable:  PowerShell
  • Set-SmbServerConfiguration -EnableSMB1Protocol $true
    

SMB v2/v3

  • Detect: PowerShell
  • Get-SmbServerConfiguration | Select EnableSMB2Protocol
    
  • Disable: PowerShell
  • Set-SmbServerConfiguration -EnableSMB2Protocol $false
    
  • Enable: PowerShell

Set-SmbServerConfiguration -EnableSMB2Protocol $true


CLIENT

Here is how to detect status, enable, and disable SMB protocols on the SMB Client that is running Windows 10, Windows Server 2019, Windows 8.1, Windows Server 2016, Windows Server 2012 R2, and Windows Server 2012.

SMBv1 on SMB Client

  • Detect Windows Command Prompt
  • sc.exe qc lanmanworkstation
    
  • Disable:  Windows Command Prompt
  • sc.exe config lanmanworkstation depend= bowser/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= disabled
    
  • Enable:   Windows Command Prompt
  • sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= auto
    

For more information, see Server storage at Microsoft

SMB v2/v3 on SMB Client

  • Detect:
    Windows Command Prompt
  • sc.exe qc lanmanworkstation
    
  • Disable:
    Windows Command Prompt
  • sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc.exe config mrxsmb20 start= disabled
    
  • Enable:
    Windows Command Prompt
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
sc.exe config mrxsmb20 start= auto

 

 

 

Jak wybrać inna wersję podczas instalacji windows

 

Jak zmienić domyślny wybór instalowanego systemu Windows

Czasami przy instalacji mam już przypisany klucz w biosie laptopa i podczas reinstalacji wyświetla się wersja np TYLKO Windows 11 ( home ) brak innych

Rozwiązanie

w notatniku UTWÓRZ PLIK ei.cfg skopiuj do katalogu Sources na Pendrive

TREŚĆ pliku

[Channel]
_Default
[VL]
0

Alternatywnie można również zautomatyzować proces wyboru wersji, konfigurując plik EI.cfg w celu zainstalowania preferowanej wersji systemu operacyjnego. Na przykład, jeśli chcesz, aby Instalator systemu Windows automatycznie wybierał wersję systemu Windows 11 Pro podczas instalacji, użyj następującego formatu pliku EI.cfg.

[EditionID]
Professional
[Channel]
_Default
[VL]
0