2018.10.10: reinstated 1809 [RS5]! using native xml patching for products.xml; fixed syntax bug with exit/b
2018.10.12: added data loss warning for RS5
2018.11.13: RS5 is officially back! + greatly improved choices dialog - feel free to use the small snippet in your own scripts
2019.05.22: 1903 [19H1]
2019.07.11: 1903 __release_svc_refresh__ and enable DynamicUpdate by default to grab latest CU
2019.09.29: UPDATED 19H1 build 18362.356 ; RS5 build 17763.379 and show build number
<?xml version="1.0" encoding="utf-8" ?> | |
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration"> | |
<BebylonBuildConfiguration> | |
<bBBLivePPEnabled>true</bBBLivePPEnabled> <!-- /* d=false */ --> | |
<bBBIGMemTraceEnabled>false</bBBIGMemTraceEnabled> <!-- /* d=false */ --> | |
<bBBMicroProfileEnabled>true</bBBMicroProfileEnabled> <!-- /* d=true */ --> | |
<bBBPythonEnabled>true</bBBPythonEnabled> <!-- /* d=true */ --> | |
<BBCompileAssertLevel>4</BBCompileAssertLevel> | |
<bBBExperimentalFeaturesEnabled>true</bBBExperimentalFeaturesEnabled> <!-- /* d=false */ --> | |
</BebylonBuildConfiguration> |
public BBR(TargetInfo Target) | |
{ | |
//Config | |
//BuildConfiguration.RelativeEnginePath = /* ...*/; | |
//Debug | |
//---BuildConfiguration.bOmitPCDebugInfoInDevelopment = true /* d=false */; | |
//BuildConfiguration.bSupportEditAndContinue = false /* d=false */; | |
//BuildConfiguration.bDisableDebugInfoForGeneratedCode = true /* d=true */; | |
//BuildConfiguration.bAllowLTCG = false /* d=false */; |
<# | |
.SYNOPSIS | |
Creates test text-based files with various character encodings. | |
.DESCRIPTION | |
Creates text-based test files using | |
* all 5 byte order-marked Unicode character encoding schemes, | |
both with and without BOM (Unicode signature) | |
* default encodings, | |
with the the platform's default encoding, [System.Text.Encoding]::Default |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
- The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.
Translations: (No guarantee that the translations are up-to-date)
Write-Host
writes directly to the console; Write-Output
writes to the pipeline, which often ends up to the console but not necessarily.
For example: Write-Host "The Cake is a lie" | Out-Null
won't work as expected, Write-Output "The Cake is a lie" | Out-Null
will.
function Test-WinCredential { | |
<# | |
.SYNOPSIS | |
Validates Windows user credentials. | |
.DESCRIPTION | |
Validates a [pscredential] instance representing user-account credentials | |
against the current user's logon domain or local machine. | |
.PARAMETER Credential |
Debian or Kali Linux installed to as KVM (libvirtd) guests do not automatically have qemu-guest-agent or spice-vdagent installed. This will prevent seamless movement of the mouse cursor between the guest and host desktop in Virtual Machine Manager (requiring the use of a Ctrl-Alt to release the cursor from the guest window).
To cure this, install both qemu-guest-agent and spice-vdagent on each guest and reboot (the guests).
$ sudo apt install qemu-guest-agent
$ sudo apt install spice-vdagent
git clean -xfd | |
git submodule foreach --recursive git clean -xfd | |
git reset --hard | |
git submodule foreach --recursive git reset --hard | |
git submodule update --init --recursive |
https://www.aircrack-ng.org/doku.php?id=airodump-ng | |
Field Description | |
BSSID MAC address of the access point. In the Client section, a BSSID of “(not associated)” means that the client is not associated with any AP. In this unassociated state, it is searching for an AP to connect with. | |
PWR Signal level reported by the card. Its signification depends on the driver, but as the signal gets higher you get closer to the AP or the station. If the BSSID PWR is -1, then the driver doesn't support signal level reporting. If the PWR is -1 for a limited number of stations then this is for a packet which came from the AP to the client but the client transmissions are out of range for your card. Meaning you are hearing only 1/2 of the communication. If all clients have PWR as -1 then the driver doesn't support signal level reporting. | |
RXQ Receive Quality as measured by the percentage of packets (management and data frames) successfully received over the last 10 seconds. See note below for a more detailed explanation. | |
Beac |