Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
K

kmkmahesh

@kmkmahesh
About
Posts
11
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to make a list that contain lists which contain lists
    K kmkmahesh

    name1
    data1
    category1

    name2
    data2
    category2

    name3
    data3
    category2//same category as above

    ...
    ...
    name20
    data20
    category16

    Now I need to create an List with category1, category2, ... upto what the categories is there on Category Node, need to create a separate Lists of each category to store the item name and every item list will have data of the item so I can retrieve them for my use.

    From above sample xml I need the same category items in a single List

    Items and Category count is fully dynamic. How to do this dynamically?

    C# xml tutorial question

  • How to decrypt
    K kmkmahesh

    It contains no virus or any thing that harms the computer i just need some types of encryption and decryption that are used in tomcat jsp I want to break it totally

    Java question com tutorial

  • How to decrypt
    K kmkmahesh

    I have some files dont know how to decrypt them i mean these are using to conduct exam, atleast i am unable to keep all the data for future preparation also i am attached a rar file download This Link in it i kept a folder which contains six files 5 of the are encpyted from them one is question other four are options of that question and one of them the solution of the question i need to decrpyt so please tell me the way to decrypt and to view them

    Java question com tutorial

  • Registration Info of Windows Above Systemtray
    K kmkmahesh

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "PaintDesktopVersion"=dword:00000001

    when i used this above the system tray it is only giving the build information, but i just want the registered owner name there, is it possible

    System Admin windows-admin announcement

  • how to use two or more internet connections
    K kmkmahesh

    while i am trying for software router that is not getting working perfectly, and i tried a trail version of multiconnect software, which is not availble now so i am searching for a best method to connect more than two or more internet connections with only software router, and i am using two dialup connections of same isp, one is from usb-modem, and another is from mobile, i also tried wingate for this it is not working, so if any solution is there for this plz help me

    System Admin help tutorial

  • how to use two or more internet connections
    K kmkmahesh

    can any one please tell me that is it possible to connect two or more internet connections to a pc, i mean i have 2 internet connections of 160Kbps each i want to use both internet connections like 320Kbps at a time can any one please help me if i am not posted in correct forum, plz move it to correct forum Waiting for ur valuable replies Thnx in advance

    System Admin help tutorial

  • some new tool making help
    K kmkmahesh

    hi now a days we are seeing that the viruses are making the foldername.exe and hiding the original folder including subfolders but antivirus will detect those virus only but we have to do heavy work to unhide those folders is there any simple way or any code for unhiding all the folders including subfolders for this

    System Admin help

  • getting input from an output in batch
    K kmkmahesh

    bro i am building a batch file to lock the folders with a password without any software using only md5.exe code is below

    title MAKING OF FOLDER LOCKER BATCH SCRIPT WITH BATCH
    @ECHO OFF
    SET NEW=%USERPROFILE%\DESKTOP\
    if not exist md5.exe goto md5error
    copy md5.exe %windir%\system32\

    ::creating batchfile of md5locker.cmd
    echo echo cls=>%temp%.\md5locker.cmd
    echo echo "Enter the Path of the drive">>%temp%.\md5locker.cmd
    echo set/p "dpat=>">>%temp%.\md5locker.cmd
    echo %dpat%>>%temp%.\md5locker.cmd
    echo if %dpat%==c: goto CNG>>%temp%.\md5locker.cmd
    echo if NOT %dpat%==c: goto FPAT>>%temp%.\md5locker.cmd
    echo :CNG>>%temp%.\md5locker.cmd
    echo cd\>>%temp%.\md5locker.cmd
    echo goto FPAT>>%temp%.\md5locker.cmd
    echo :FPAT>>%temp%.\md5locker.cmd
    echo cls>>%temp%.\md5locker.cmd
    echo echo "Enter the Path of the folder without drive name">>%temp%.\md5locker.cmd
    echo set/p "fpat=>">>%temp%.\md5locker.cmd
    echo cd %fpat%>>%temp%.\md5locker.cmd
    echo if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK>>%temp%.\md5locker.cmd
    echo echo "NO Locked Folders exist Please Enter the Name of the folder to Lock">>%temp%.\md5locker.cmd
    echo set/p "name=>">>%temp%.\md5locker.cmd
    echo if EXIST %name% goto LOCK>>%temp%.\md5locker.cmd
    echo if NOT EXIST %name% goto MD>>%temp%.\md5locker.cmd
    echo :MD >>%temp%.\md5locker.cmd
    echo echo. Are you sure to Create and Lock the folder %name%(Y/N)>>%temp%.\md5locker.cmd
    echo set/p "ch=>">>%temp%.\md5locker.cmd
    echo if %ch%==Y goto MDLOCKER>>%temp%.\md5locker.cmd
    echo if %ch%==y goto MDLOCKER>>%temp%.\md5locker.cmd
    echo if %ch%==n goto END>>%temp%.\md5locker.cmd
    echo if %ch%==N goto END>>%temp%.\md5locker.cmd
    echo echo Invalid choice.>>%temp%.\md5locker.cmd
    echo goto MD>>%temp%.\md5locker.cmd
    echo :CONFIRM>>%temp%.\md5locker.cmd
    echo echo Are you sure u want to Lock the folder(Y/N)>>%temp%.\md5locker.cmd
    echo set/p "cho=>">>%temp%.\md5locker.cmd
    echo if %cho%==Y goto LOCK>>%temp%.\md5locker.cmd
    echo if %cho%==y goto LOCK>>%temp%.\md5locker.cmd
    echo if %cho%==n goto END>>%temp%.\md5locker.cmd
    echo if %cho%==N goto END>>%temp%.\md5locker.cmd
    echo echo Invalid choice.>>%temp%.\md5locker.cmd
    echo goto CONFIRM>>%temp%.\md5locker.cmd
    echo :LOCK>>%temp%.\md5locker.cmd
    echo ren %name% "Control Panel.{21EC

    System Admin tutorial tools help

  • Missing LAN connection
    K kmkmahesh

    i think it has disable in bios itself bro after that accidently u had applied any default setting or any changes made by u just remember that

    System Admin help hardware question

  • getting input from an output in batch
    K kmkmahesh

    i got some solution for my question but one more problem occurs this code replaces the text in a file but i have problem with this code

    :: Create the assembler program, by Herbert Kleebauer
    echo Bj@jzh`0X-`/PPPPPPa(DE(DM(DO(Dh(Ls(Lu(LX(LeZRR]EEEUYRX2Dx=> %temp%.\sbs2.com
    echo 0DxFP,0Xx.t0P,=XtGsB4o@$?PIyU!WvX0GwUY Wv;ovBX2Gv0ExGIuht6>> %temp%.\sbs2.com
    echo ?@}IKuNWpe~Fpe?FNHlF?wGMECIQqo{Ox{T?kPv@jeoSeIlRFD@{AyEKj@>> %temp%.\sbs2.com
    echo iqe~1NeAyR?mHAG~BGRgB{~H?o~TsdgCYqe?HR~upkpBG?~slJBCyA?@xA>> %temp%.\sbs2.com
    echo LZp{xq`Cs?H[C_vHDyB?Hos@QslFA@wQ~~x}viH}`LYNBGyA?@xAB?sUq`>> %temp%.\sbs2.com
    echo LRy@PwtCYQEuFK@A~BxPtDss@fFqjVmzD@qBEOEenU?`eHHeBCMs?FExep>> %temp%.\sbs2.com
    echo LHsPBGyA?@xAunjzA}EKNs@CA?wQpQpKLBHv?s`WJ`LRCYyIWMJaejCksl>> %temp%.\sbs2.com
    echo H[GyFGhHBwHZjjHeoFasuFUJeHeB?OsQH[xeHCPvqFj@oq@eNc?~}Nu??O>> %temp%.\sbs2.com
    echo ~oEwoAjBKs?Zp`LBzHQzyEFrAWAG{EFrAqAGYwHTECIQ{coKIsaCsf{Oe~>> %temp%.\sbs2.com
    echo CK}Ayre~CNFA{rAyEKFACrA{EKGAjbA}eKGSjNMtQFtc{OAyDGFj?{FDGQ>> %temp%.\sbs2.com
    echo KAjNVk_OCAx@e?f{o?CosI}1EGizhljJ~H1ZeG}JBA~rACBMDGjjDG@g0>> %temp%.\sbs2.com

    :: Use the program
    %temp%.\sbs2.com 0 "&" "&" < c:\dirlist.xml > c:\dirlist1.xml

    more details available of this code is HERE AND I just want to

    %temp%.\sbs2.com 0 "&" "&" < c:\dirlist.xml >

    i want to assign a variable in that with %variablename% so please help for me

    System Admin tutorial tools help

  • getting input from an output in batch
    K kmkmahesh

    i want some help from u people that i am buiding a batch script to lock files and making them undeletable with md5 password protecting but i want an example how to give the output of a command as input of a variable exactly for md5 it will asks for password and it has to write the hashes in another batch script so i am asking u people to help me in 1 or two days i will post the code here

    System Admin tutorial tools help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups