		#If partition.csv exists it will parsed; if not the standard partitioning menu will be shown
		my $ret = undef;
		my $part_conf = dos_to_host ('z:\\site\\partition.csv');
		if (-e $part_conf) {
				require "conf-csv.pl";
				CONFIG->setup(dos_to_host('z:\\site\\partition.csv'), '', '');
				my @fdisk_choices = CONFIG->get_menuchoice_array('fdisk');
				$ret = menu_choice ('Do nothing (continue)' => undef,
														'Run partitioning tool manually (experts only)' => $interactive_cmd,
														@fdisk_choices);
		}
		else {
		    $ret = menu_choice
		        ('Do nothing (continue)' => undef,
		         'Run partitioning tool manually (experts only)' => $interactive_cmd,
		         'Whole disk C:', =>
		         'fdisk /pri:100,100',
		         '12G C:, rest D:' =>
		         'fdisk /pri:12288;fdisk /pri:100,100 /spec:7',
		         '12G C:, 5G D:, rest E:' =>
		         'fdisk /pri:12288;fdisk /pri:5120 /spec:7;fdisk /pri:100,100 /spec:7',
		         '50% C:, 50% D:' =>
		         'fdisk /pri:50,100;fdisk /pri:50,100 /spec:7',
		         );
		 }