{"id":759,"date":"2017-02-27T09:40:19","date_gmt":"2017-02-27T09:40:19","guid":{"rendered":"http:\/\/coderpradip.com\/blog\/?p=759"},"modified":"2019-09-04T00:36:09","modified_gmt":"2019-09-03T18:51:09","slug":"create-numeric-password-generator","status":"publish","type":"post","link":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/","title":{"rendered":"How to create a Numeric Password Generator in Batch?"},"content":{"rendered":"<div class=\"post-views post-759 entry-meta\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium\" src=\"https:\/\/i0.wp.com\/i66.tinypic.com\/xfca2v.jpg?resize=640%2C360\" alt=\"How to create a Numeric Password Generator in Batch? | Binit Ghimire\" width=\"640\" height=\"360\" \/><\/div>\n<p>What\u2019s happening, guys? I am <a href=\"https:\/\/www.google.com\/search?q=Binit+Ghimire\" rel=\"nofollow\">Binit Ghimire<\/a> and I am new here in the <a href=\"http:\/\/www.coderpradip.com\/\" rel=\"nofollow\">CoderPradip blog<\/a>\u00a0\u00a0but I\u2019ve always been a reader of this site\u00a0since the time it started. I am <a href=\"https:\/\/facebook.com\/CallmeCoderPradip\" rel=\"nofollow\">CoderPradip<\/a>\u2018s friend and I\u2019d like to thank him for letting me post in his blog. In this tutorial, I am going to show you <a href=\"https:\/\/www.google.com.np\/search?q=how+to+create+a+Numeric+Password+Generator+in+Batch&amp;oq=how+to+create+a+Numeric+Password+Generator+in+Batch\" rel=\"nofollow\">how to create a Numeric Password Generator in Batch<\/a>. This is called\u00a0<em>Numeric Password Generator in Batch<\/em> because it is created using Batch Programming (better known as Batch) and it can generate only numeric values. Generally, the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Filename_extension\" rel=\"nofollow\">extension<\/a> of programs developed using Batch Programming is <a href=\"https:\/\/en.wikipedia.org\/wiki\/Batch_file\" rel=\"nofollow\">.bat<\/a>. But, they can be\u00a0converted into executable files using various .BAT to <a href=\"https:\/\/en.wikipedia.org\/wiki\/.exe\" rel=\"nofollow\">.EXE<\/a> converters. In this tutorial, we are going to discuss on creating a Numeric Password Generator in Batch.<\/p>\n<h4>Things You\u2019ll Need:<\/h4>\n<ul>\n<li>A Computer,<\/li>\n<li>An Operating System installed on your computer, and<\/li>\n<li>A Text Editor (<a href=\"https:\/\/notepad-plus-plus.org\/download\/\" rel=\"nofollow\">Notepad++<\/a>\u00a0recommended)<\/li>\n<\/ul>\n<h4>Steps:<\/h4>\n<div class=\"googlepublisherpluginad\"><\/div>\n<p>1. Open any text editor that you\u2019ve. If you have Notepad++, open it.<br \/>\nTo make it easy, click on \u2018Language\u2019 option at the top of Notepad++ and select \u2018Batch\u2019.<\/p>\n<p>2. Then, type the initial codes of Batch Programming as given be:<\/p>\n<div class=\"googlepublisherpluginad\">\n<pre class=\"lang:c decode:true\">@echo off\r\ntitle BINIT's &amp;nbsp;PASSWORD &amp;nbsp;GENERATOR\r\ncolor f4<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Here,<br \/>\nIn the first line, \u2018@\u2019 is used to hide the echo of the batch command, \u2018echo\u2019 is used to output (show\/display) status text to the screen and \u2018off\u2019 is used to turn off command echoing.<br \/>\nIn the second line, \u2018title\u2019 is used to define the title of the program as shown in the following screenshot:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full aligncenter\" src=\"https:\/\/i0.wp.com\/www.coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/scr1.png?w=1024\" alt=\"\" width=\"640\" height=\"325\" \/><\/p>\n<div class=\"separator\">\n<div class=\"separator\">In the third line, \u2018color\u2019 is used to define the color of the background &amp; foreground (text) of the program. Here, the color is \u2018f4\u2032 where f\u2019 refers to White which is the background and \u20184\u2019 refers to Red\u00a0which is the foreground. You can know the color codes used in batch by searching on various search engines.<\/div>\n<div class=\"separator\"><\/div>\n<div class=\"separator\">3. After those codes, press Enter and type the following codes:<\/div>\n<div class=\"separator\">\n<div id=\"crayon-58b40340b74e6747491750\" class=\"crayon-syntax crayon-theme-dark-terminal crayon-font-monaco crayon-os-pc print-yes notranslate crayon-wrapped\" data-settings=\" minimize scroll-mouseover wrap\">\n<div class=\"crayon-plain-wrap\">\n<pre class=\"lang:c decode:true\">:MENU\r\ncls\r\necho __________________________________________\r\necho \u00a0 \u00a0 \u00a0 BINIT's \u00a0PASSWORD \u00a0GENERATOR\r\necho \u00a0 https:\/\/thebinitghimire.blogspot.com\r\necho __________________________________________\r\necho \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 MAIN MENU\r\necho __________________________________________\r\necho \u00a0 \u00a01) GENERATE PASSWORD (PRESS 1)\r\necho \u00a0 \u00a02) EXIT (PRESS 2)\r\nset input=\r\nset \/p input= \u00a0 \u00a0WHAT DO YOU WANT TO CHOOSE?:\r\nif %input%==1 goto GP\r\nif %input%==2 EXIT\r\npause<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<div class=\"crayon-main\"><\/div>\n<\/div>\n<\/div>\n<div class=\"separator\">Here, :MENU is used to define the variable \u2018MENU\u2019. It defines the main menu in this program \u2018cls\u2019 is used to clear the screen. \u2018echo\u2019 is used to print the text on the screen. It is used to define the contents of the program. \u2018set input\u2019 is used to accept input from the user. \u2018set \/p\u2019 is used to accept single character input from the user. If the user\u2019s input is 1, it goes to the variable GP (it will be used after sometime in the program.). This means the password is generated. If the user\u2019s input is 2, the program exits.<\/div>\n<div class=\"separator\">\n<table class=\"tr-caption-container\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td><img loading=\"lazy\" decoding=\"async\" class=\"size-full aligncenter\" src=\"https:\/\/i1.wp.com\/www.coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/scr1-1.png?w=1024\" alt=\"\" width=\"320\" height=\"162\" \/><\/td>\n<\/tr>\n<tr>\n<td class=\"tr-caption\">The text above the last line in this image are the result of \u2018echo\u2019.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"separator\">4. After the above codes, press Enter and then press Enter again to leave 1 line blank. Then, type the following codes:<\/div>\n<div class=\"separator\">\n<div id=\"crayon-58b40340b74eb932248028\" class=\"crayon-syntax crayon-theme-dark-terminal crayon-font-monaco crayon-os-pc print-yes notranslate crayon-wrapped\" data-settings=\" minimize scroll-mouseover wrap\">\n<div class=\"crayon-plain-wrap\">\n<pre class=\"lang:c decode:true\">:GP\r\ncls\r\necho __________________________________________\r\necho \u00a0 \u00a0 \u00a0 BINIT's \u00a0PASSWORD \u00a0GENERATOR\r\necho \u00a0 https:\/\/thebinitghimire.blogspot.com\r\necho __________________________________________\r\necho \u00a0 \u00a0 \u00a0 \u00a0 PASSWORD GENERATING MENU\r\necho __________________________________________\r\necho GENERATED PASSWORD: %RANDOM%\r\necho __________________________________________\r\necho Remember to write\/copy the password!\r\necho THANKS FOR USING MY PASSWORD GENERATOR!\r\necho __________________________________________\r\necho \u00a0 \u00a01) GENERATE ANOTHER PASSWORD (PRESS 1)\r\necho \u00a0 \u00a02) GO BACK TO MAIN MENU (PRESS 2)\r\necho \u00a0 \u00a03) EXIT (PRESS 3)\r\nset input=\r\nset \/p input= \u00a0 \u00a0WHAT DO YOU WANT TO CHOOSE?:\r\nif %input%==1 goto GP\r\nif %input%==2 goto MENU\r\nif %input%==3 EXIT<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"separator\">Here, the variable GP is defined. When the input of the user is 1 in the previous step, it goes to the variable GP &amp; generates the numeric password. The program is divided into main program and sub-program to make the program easier to understand &amp; to reduce the errors. The variable GP defines the sub-program. If the user\u2019s input was 1 in Step 3, the program will look similar to the following screenshot:<\/div>\n<div class=\"separator\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" src=\"https:\/\/i2.wp.com\/www.coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/scr1-2.png?w=1024\" alt=\"\" width=\"640\" height=\"324\" \/><\/div>\n<\/div>\n<\/div>\n<div class=\"separator\">\n<div class=\"separator\">\u2018cls\u2019 is used to clear the screen. \u2018echo\u2019 is used to print the text on the screen. \u2018%RANDOM%\u2019 is used to generate random numbers which is considered as password in this program. \u2018set input\u2019 is used to accept input from the user. \u2018set \/p\u2019 is used to take a single character input from the user.<\/div>\n<div class=\"separator\">Here, If the user\u2019s input is 1, another password is generated because, it again goes to GP. If the user\u2019s input is 2, it goes back to the main menu because, in the program code, it goes to the variable MENU which defines the Main Menu. If the user\u2019s input is 3, the program exits.<\/div>\n<div class=\"separator\"><\/div>\n<div class=\"separator\">5. After you type all the above codes, save the program with \u2018.bat\u2019 extension. For example, save it as \u2018Password Generator.bat\u2019. Otherwise, the program won\u2019t run. After saving the program, open the saved file having \u2018.bat\u2019 extension &amp; the program will run. Try entering values!<\/div>\n<div class=\"separator\"><\/div>\n<div class=\"separator\">At last, your program code should look like this:<\/div>\n<div class=\"separator\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" src=\"https:\/\/i0.wp.com\/www.coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/scr1-3.png?w=1024\" alt=\"\" width=\"494\" height=\"720\" \/><\/div>\n<div class=\"separator\">\n<div class=\"separator\"><b>In this program,\u00a0<\/b><\/div>\n<div class=\"separator\">1. The title of the program can be modified with your own title.<\/div>\n<div class=\"separator\">2. The color code \u2018f4\u2019 can be replaced by other color codes. You must use the color codes of Batch. HTML color codes won\u2019t work. You can know the color codes used in batch by searching on various search engines.<\/div>\n<div class=\"separator\">3. You can make the length of the password longer by adding a hyphen \u2018-\u2018 or just by giving space and typing %RANDOM% again. You can do this many times as you want.<\/div>\n<div><\/div>\n<div class=\"separator\">The <u>limitation of this program<\/u> is that it can generate only numeric text not alphabetic text or special characters. A new tutorial on generating random alphanumeric characters (if possible, special characters, too.) in batch will be published soon.<\/div>\n<\/div>\n<\/div>\n<div class=\"separator\"><\/div>\n<div class=\"separator\">(Also\u00a0posted on <a href=\"https:\/\/binittech.blogspot.com\/2016\/10\/CreateNumericPasswordGenerator-in-Batch.html\" rel=\"nofollow\">BinitTech blog<\/a>)<\/div>\n<div class=\"separator\"><\/div>\n<div class=\"separator\">I will be making more blog posts. So, please stay tuned and see the other posts in the <a href=\"http:\/\/coderpradip.com\/blog\/\" rel=\"nofollow\">CoderPradip blog<\/a>.<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What\u2019s happening, guys? I am Binit Ghimire and I am new here in the CoderPradip blog\u00a0\u00a0but I\u2019ve always been a reader of this site\u00a0since the time it started. I am CoderPradip\u2018s friend and I\u2019d like to thank him for letting me post in his blog. In this tutorial, I am going to show you how <a class=\"read-more\" href=\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\">&hellip;&nbsp;<span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":751,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[42],"tags":[],"class_list":["post-759","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-batch-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create a Numeric Password Generator in Batch?<\/title>\n<meta name=\"description\" content=\"What&#039;s happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create a Numeric Password Generator in Batch?\" \/>\n<meta property=\"og:description\" content=\"What&#039;s happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\" \/>\n<meta property=\"og:site_name\" content=\"Pradip Adhikari\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/notpradip\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/notpradip\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-02-27T09:40:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-03T18:51:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Pradip Adhikari\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/notpradip\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pradip Adhikari\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\"},\"author\":{\"name\":\"Pradip Adhikari\",\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7\"},\"headline\":\"How to create a Numeric Password Generator in Batch?\",\"datePublished\":\"2017-02-27T09:40:19+00:00\",\"dateModified\":\"2019-09-03T18:51:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\"},\"wordCount\":855,\"publisher\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7\"},\"image\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png\",\"articleSection\":[\"Batch Programming\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\",\"url\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\",\"name\":\"How to create a Numeric Password Generator in Batch?\",\"isPartOf\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png\",\"datePublished\":\"2017-02-27T09:40:19+00:00\",\"dateModified\":\"2019-09-03T18:51:09+00:00\",\"description\":\"What's happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.\",\"breadcrumb\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage\",\"url\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png\",\"contentUrl\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png\",\"width\":640,\"height\":360,\"caption\":\"How to Create a Numeric Password Generator in Batch | Binit Ghimire\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/coderpradip.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programming\",\"item\":\"https:\/\/coderpradip.com\/blog\/category\/programming\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Batch Programming\",\"item\":\"https:\/\/coderpradip.com\/blog\/category\/programming\/batch-programming\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to create a Numeric Password Generator in Batch?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/coderpradip.com\/blog\/#website\",\"url\":\"https:\/\/coderpradip.com\/blog\/\",\"name\":\"Pradip Adhikari\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/coderpradip.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7\",\"name\":\"Pradip Adhikari\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2023\/01\/Pradip-Adhikari.png\",\"contentUrl\":\"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2023\/01\/Pradip-Adhikari.png\",\"width\":954,\"height\":1069,\"caption\":\"Pradip Adhikari\"},\"logo\":{\"@id\":\"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Tech Geek and Author\",\"sameAs\":[\"http:\/\/coderpradip.com\/\",\"https:\/\/facebook.com\/notpradip\/\",\"https:\/\/instagram.com\/notpradip\/\",\"https:\/\/linkedin.com\/in\/notpradip\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/notpradip\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create a Numeric Password Generator in Batch?","description":"What's happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/","og_locale":"en_US","og_type":"article","og_title":"How to create a Numeric Password Generator in Batch?","og_description":"What's happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.","og_url":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/","og_site_name":"Pradip Adhikari","article_publisher":"https:\/\/facebook.com\/notpradip\/","article_author":"https:\/\/facebook.com\/notpradip\/","article_published_time":"2017-02-27T09:40:19+00:00","article_modified_time":"2019-09-03T18:51:09+00:00","og_image":[{"width":640,"height":360,"url":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png","type":"image\/png"}],"author":"Pradip Adhikari","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/notpradip\/","twitter_misc":{"Written by":"Pradip Adhikari","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#article","isPartOf":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/"},"author":{"name":"Pradip Adhikari","@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7"},"headline":"How to create a Numeric Password Generator in Batch?","datePublished":"2017-02-27T09:40:19+00:00","dateModified":"2019-09-03T18:51:09+00:00","mainEntityOfPage":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/"},"wordCount":855,"publisher":{"@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7"},"image":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage"},"thumbnailUrl":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png","articleSection":["Batch Programming"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/","url":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/","name":"How to create a Numeric Password Generator in Batch?","isPartOf":{"@id":"https:\/\/coderpradip.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage"},"image":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage"},"thumbnailUrl":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png","datePublished":"2017-02-27T09:40:19+00:00","dateModified":"2019-09-03T18:51:09+00:00","description":"What's happening, guys? I am Binit Ghimire and in this tutorial, I am showing you how you can create your own numeric password generator in Batch.","breadcrumb":{"@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#primaryimage","url":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png","contentUrl":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2017\/02\/1.png","width":640,"height":360,"caption":"How to Create a Numeric Password Generator in Batch | Binit Ghimire"},{"@type":"BreadcrumbList","@id":"https:\/\/coderpradip.com\/blog\/create-numeric-password-generator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/coderpradip.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Programming","item":"https:\/\/coderpradip.com\/blog\/category\/programming\/"},{"@type":"ListItem","position":3,"name":"Batch Programming","item":"https:\/\/coderpradip.com\/blog\/category\/programming\/batch-programming\/"},{"@type":"ListItem","position":4,"name":"How to create a Numeric Password Generator in Batch?"}]},{"@type":"WebSite","@id":"https:\/\/coderpradip.com\/blog\/#website","url":"https:\/\/coderpradip.com\/blog\/","name":"Pradip Adhikari","description":"Blog","publisher":{"@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/coderpradip.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/f7a455883d474da73ee7730e4cc8a5d7","name":"Pradip Adhikari","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2023\/01\/Pradip-Adhikari.png","contentUrl":"https:\/\/coderpradip.com\/blog\/wp-content\/uploads\/2023\/01\/Pradip-Adhikari.png","width":954,"height":1069,"caption":"Pradip Adhikari"},"logo":{"@id":"https:\/\/coderpradip.com\/blog\/#\/schema\/person\/image\/"},"description":"Tech Geek and Author","sameAs":["http:\/\/coderpradip.com\/","https:\/\/facebook.com\/notpradip\/","https:\/\/instagram.com\/notpradip\/","https:\/\/linkedin.com\/in\/notpradip\/","https:\/\/x.com\/https:\/\/twitter.com\/notpradip\/"]}]}},"_links":{"self":[{"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/posts\/759","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/comments?post=759"}],"version-history":[{"count":0,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/posts\/759\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/media\/751"}],"wp:attachment":[{"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/media?parent=759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/categories?post=759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/coderpradip.com\/blog\/wp-json\/wp\/v2\/tags?post=759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}