views:

183

answers:

5

Duplicate of Suggestions for a site ripper.

Hi

I need to download an offline version of an specific page. Including all images and CSS files.

I need to recreate the entire webpage again in my server.

Something running in the console would be great.

Thanks

+2  A: 
  • iOpus File & Web Page Downloader is a command line file and web page downloader utility to automate downloads of all kinds. Great for use with batch files or the Windows Scripting Host. Also works well with the task scheduler to schedule periodic download tasks.

  • Teleport Exec - commercial solution

  • wget for Windows - this one is free

Koistya Navin
A: 

http://www.httrack.com/

madcolor
+1 for this one. Works great, and highly customizable.
Jamo
+1  A: 

Simplest solution: Firefox (and I assume most other modern browser) support "with all content" on the Save-As feature, but obviously that's not really command-line enabled.

Alternatively I'd use wget (I'm pretty sure there's a Windows version out there as well) with the --page-requisites (or -p) option.

Joachim Sauer
as to wget, there are a few windows ports, let alone the cygwin option.
Tracker1
and is possible to get the CSS and Images with wget?
Leandro Ardissone
@Leandro: -p should take care of that
Joachim Sauer
A: 

wget -r example.com

Rich Bradshaw