Showing posts with label install. Show all posts
Showing posts with label install. Show all posts
Saturday, December 17, 2016
Crack Windows 7 Install Windows Loader
Crack Windows 7 Install Windows Loader
Windows Loader by DAZ adalah crack khusus Windows 7 yang terbaik saat ini dan saat artikel ini ditulis telah mencapai versi 2.1.7, namun pernahkan Anda menjumpai hal seperti ini Modified Uninstall other cracks ketika hendak meng-install Windows Loader by DAZ?
Jika iya maka BinusHacker punya solusinya. Hal tersebut terjadi karena pada perangkat komputer yang terdapat Windows 7 telah terinstall crack yang lain, semisal RemoveWAT atau yang serupa, HAL7600, Chew7, uODIN, dan yang lainnya.
Karena Windows Loader by DAZ ini adalah crack yang paling keren maka bagaimana langkah perbaikannya?
DAZ, sang pembuat Windows Loader ini juga membuat tool terpisah untuk menghapus Windows crack lain yang sudah terinstall di komputer, namanya WAT Fix. Kemampuan lain dari WAT Fix ini adalah dia mampu memperbaiki file permissions, system files, service yang diperlukan untuk aktivasi windows, VBS file assoc, dan menghapus rangkaian daftar Microsoft dari HOST file yang ada pada komputer meskipun kita tidak dapat mengetahui nama crack lawas yang telah terinstall.
Langkah penggunaan WAT Fix, dimisalkan dengan kasus dimana RemoveWAT telah terinstall di dalam system Windows 7 :
1. Jalankan WAT Fix sampai selesai, apapun yang terjadi jangan matikan computer sebelum ada proses restart secara otomatis karena jika dipaksa komputer bisa rusak.
Jika komputer gagal untuk booting setelah penggunaan WAT Fix, maka gunakan cara repair dari DVD Windows 7 yang Anda miliki, pada command prompt yang tersedia ketikkan dua baris perintah berikut :
c:
undo
Dimana c: adalah letak partisi Windows 7
2. Setelah selesai dengan normal, lalu jalankan Windows Loader, lakukan crack seperti biasa.
Happy cracking ^_^
Available link for download
Monday, October 10, 2016
Code Snippet Download and install apk file programmatically
Code Snippet Download and install apk file programmatically
Downloading a file can be done in many ways.
either using httpurlconnection or httpclient or download manager in android.
using httpurlconnection
using download manager works from api 9,
org.apache.commons.io.FileUtils.copyURLToFile(URL, File)
Below is an example,
just paste the above code to use it as an asynctask.
Make sure to add write external storage and internet permission.
You can add this code before calling installApk(), if you may want to check for corrupted/incomplete apk files.
private boolean isApkCorrupted() {
boolean corruptedApkFile = false;
try {
new JarFile(new File("/sdcard/filename.apk"));
} catch (Exception ex) {
corruptedApkFile = true;
}
return corruptedApkFile;
}
Courtesy
http://bpsinghrajput.blogspot.in/2012/07/how-to-download-and-install-apk-from.html
http://gafurbabu.wordpress.com/2012/02/29/download-file-in-android-by-using-asynctask-in-background-operations/
http://stackoverflow.com/questions/11121121/android-download-an-application-using-the-downloadmanager-class
http://stackoverflow.com/questions/8338786/is-there-a-way-to-be-notified-when-apk-fails-to-being-installed
either using httpurlconnection or httpclient or download manager in android.
using httpurlconnection
String result = "";
try {
URL url = new URL(this.url);
HttpURLConnection urlConnection = (HttpURLConnection) url
.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.connect();
File sdcard = Environment.getExternalStorageDirectory();
File file = new File(sdcard, "filename.apk");
FileOutputStream fileOutput = new FileOutputStream(file);
InputStream inputStream = urlConnection.getInputStream();
byte[] buffer = new byte[1024];
int bufferLength = 0;
while ((bufferLength = inputStream.read(buffer)) > 0) {
fileOutput.write(buffer, 0, bufferLength);
}
fileOutput.close();
result = "done";
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
using download manager works from api 9,
Uri src_uri = Uri.parse("http://your.url.here/File.apk");
Uri dst_uri = Uri.parse("file:///mnt/sdcard/download/File.apk");
DownloadManager.Request req = new DownloadManager.Request(src_uri);
req.setDestinationUri(dst_uri);
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
dm.enqueue(req);
There is another one line technique,org.apache.commons.io.FileUtils.copyURLToFile(URL, File)
Below is an example,
class InstallTask extends AsyncTask<Void, Void, String> {
ProgressDialog mProgressDialog;
Context context;
String url;
public InstallTask(Context context, String url) {
this.context = context;
this.url = url;
}
protected void onPreExecute() {
mProgressDialog = ProgressDialog.show(context,
"Download", " Downloading in progress..");
}
private String downloadapk() {
String result = "";
try {
URL url = new URL(this.url);
HttpURLConnection urlConnection = (HttpURLConnection) url
.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.connect();
File sdcard = Environment.getExternalStorageDirectory();
File file = new File(sdcard, "filename.apk");
FileOutputStream fileOutput = new FileOutputStream(file);
InputStream inputStream = urlConnection.getInputStream();
byte[] buffer = new byte[1024];
int bufferLength = 0;
while ((bufferLength = inputStream.read(buffer)) > 0) {
fileOutput.write(buffer, 0, bufferLength);
}
fileOutput.close();
result = "done";
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
protected String doInBackground(Void... params) {
String result = downloadapk();
return result;
}
protected void onPostExecute(String result) {
if (result.equals("done")) {
mProgressDialog.dismiss();
installApk();
} else {
Toast.makeText(context, "Error while downloading",
Toast.LENGTH_LONG).show();
}
}
private void installApk() {
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(new File("/sdcard/filename.apk"));
intent.setDataAndType(uri, "application/vnd.android.package-archive");
context.startActivity(intent);
}
}
just paste the above code to use it as an asynctask.
Make sure to add write external storage and internet permission.
You can add this code before calling installApk(), if you may want to check for corrupted/incomplete apk files.
private boolean isApkCorrupted() {
boolean corruptedApkFile = false;
try {
new JarFile(new File("/sdcard/filename.apk"));
} catch (Exception ex) {
corruptedApkFile = true;
}
return corruptedApkFile;
}
Courtesy
http://bpsinghrajput.blogspot.in/2012/07/how-to-download-and-install-apk-from.html
http://gafurbabu.wordpress.com/2012/02/29/download-file-in-android-by-using-asynctask-in-background-operations/
http://stackoverflow.com/questions/11121121/android-download-an-application-using-the-downloadmanager-class
http://stackoverflow.com/questions/8338786/is-there-a-way-to-be-notified-when-apk-fails-to-being-installed
Available link for download
Subscribe to:
Posts (Atom)